Changeset 2879853
- Timestamp:
- 03/14/2023 02:27:29 PM (3 years ago)
- Location:
- table-addons-for-elementor
- Files:
-
- 30 added
- 3 edited
-
tags/1.2.0 (added)
-
tags/1.2.0/README.txt (added)
-
tags/1.2.0/admin (added)
-
tags/1.2.0/admin/class-table-addons-for-elementor-admin.php (added)
-
tags/1.2.0/admin/css (added)
-
tags/1.2.0/admin/css/table-addons-for-elementor-admin.css (added)
-
tags/1.2.0/admin/index.php (added)
-
tags/1.2.0/admin/js (added)
-
tags/1.2.0/admin/js/table-addons-for-elementor-admin.js (added)
-
tags/1.2.0/includes (added)
-
tags/1.2.0/includes/class-table-addons-for-elementor-activator.php (added)
-
tags/1.2.0/includes/class-table-addons-for-elementor-deactivator.php (added)
-
tags/1.2.0/includes/class-table-addons-for-elementor-extension.php (added)
-
tags/1.2.0/includes/class-table-addons-for-elementor-i18n.php (added)
-
tags/1.2.0/includes/class-table-addons-for-elementor-loader.php (added)
-
tags/1.2.0/includes/class-table-addons-for-elementor-widget.php (added)
-
tags/1.2.0/includes/class-table-addons-for-elementor.php (added)
-
tags/1.2.0/includes/index.php (added)
-
tags/1.2.0/index.php (added)
-
tags/1.2.0/languages (added)
-
tags/1.2.0/languages/table-addons-elementor.pot (added)
-
tags/1.2.0/public (added)
-
tags/1.2.0/public/class-table-addons-for-elementor-public.php (added)
-
tags/1.2.0/public/css (added)
-
tags/1.2.0/public/css/table-addons-for-elementor-public.css (added)
-
tags/1.2.0/public/index.php (added)
-
tags/1.2.0/public/js (added)
-
tags/1.2.0/public/js/table-addons-for-elementor-public.js (added)
-
tags/1.2.0/table-addons-for-elementor.php (added)
-
tags/1.2.0/uninstall.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/includes/class-table-addons-for-elementor-widget.php (modified) (11 diffs)
-
trunk/table-addons-for-elementor.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
table-addons-for-elementor/trunk/README.txt
r2701117 r2879853 5 5 Tags: elementor table, elementor table addons, table for elementor, table addons for elementor 6 6 Requires at least: 3.0.1 7 Tested up to: 5.98 Stable tag: 1. 27 Tested up to: 6.1.1 8 Stable tag: 1.3 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 38 38 == Changelog == 39 39 40 = 1.3.0 = 41 * Elmentor icon update 40 42 = 1.2.0 = 41 43 * Elmentor deprecated class update -
table-addons-for-elementor/trunk/includes/class-table-addons-for-elementor-widget.php
r2701117 r2879853 71 71 72 72 /** 73 * Register oEmbedwidget controls.73 * Register widget controls. 74 74 * 75 75 * Adds different input fields to allow the user to change and customize the widget settings. … … 78 78 * @access protected 79 79 */ 80 protected function _register_controls() {80 protected function register_controls() { 81 81 //Table Header start 82 82 $this->start_controls_section( … … 124 124 'colspannumber', [ 125 125 'label' => __( 'colSpan Number', 'elementor' ), 126 'type' => Controls_Manager:: TEXT,126 'type' => Controls_Manager::NUMBER, 127 127 'condition' => [ 128 128 'advance' => 'yes', … … 182 182 'left' => [ 183 183 'title' => __( 'Left', 'table-addons-for-elementor' ), 184 'icon' => ' fa fa-align-left',184 'icon' => 'eicon-h-align-left', 185 185 ], 186 186 'center' => [ 187 187 'title' => __( 'Center', 'table-addons-for-elementor' ), 188 'icon' => ' fa fa-align-center',188 'icon' => 'eicon-h-align-center', 189 189 ], 190 190 'right' => [ 191 191 'title' => __( 'Right', 'table-addons-for-elementor' ), 192 'icon' => ' fa fa-align-right',192 'icon' => 'eicon-h-align-right', 193 193 ], 194 194 'justify' => [ 195 195 'title' => __( 'Justified', 'table-addons-for-elementor' ), 196 'icon' => ' fa fa-align-justify',196 'icon' => 'eicon-h-align-stretch', 197 197 ], 198 198 ], … … 307 307 'colspannumber', [ 308 308 'label' => __( 'colSpan Number', 'elementor' ), 309 'type' => Controls_Manager:: TEXT,309 'type' => Controls_Manager::NUMBER, 310 310 'condition' => [ 311 311 'advance' => 'yes', … … 332 332 'rowspannumber', [ 333 333 'label' => __( 'rowSpan Number', 'elementor' ), 334 'type' => Controls_Manager:: TEXT,334 'type' => Controls_Manager::NUMBER, 335 335 'condition' => [ 336 336 'advance' => 'yes', … … 352 352 'left' => [ 353 353 'title' => __( 'Left', 'table-addons-for-elementor' ), 354 'icon' => ' fa fa-align-left',354 'icon' => 'eicon-h-align-left', 355 355 ], 356 356 'center' => [ 357 357 'title' => __( 'Center', 'table-addons-for-elementor' ), 358 'icon' => ' fa fa-align-center',358 'icon' => 'eicon-h-align-center', 359 359 ], 360 360 'right' => [ 361 361 'title' => __( 'Right', 'table-addons-for-elementor' ), 362 'icon' => ' fa fa-align-right',362 'icon' => 'eicon-h-align-right', 363 363 ], 364 364 'justify' => [ 365 365 'title' => __( 'Justified', 'table-addons-for-elementor' ), 366 'icon' => ' fa fa-align-justify',366 'icon' => 'eicon-h-align-stretch', 367 367 ], 368 368 ], … … 479 479 'left' => [ 480 480 'title' => __( 'Left', 'table-addons-for-elementor' ), 481 'icon' => ' fa fa-align-left',481 'icon' => 'eicon-h-align-left', 482 482 ], 483 483 'center' => [ 484 484 'title' => __( 'Center', 'table-addons-for-elementor' ), 485 'icon' => ' fa fa-align-center',485 'icon' => 'eicon-h-align-center', 486 486 ], 487 487 'right' => [ 488 488 'title' => __( 'Right', 'table-addons-for-elementor' ), 489 'icon' => ' fa fa-align-right',489 'icon' => 'eicon-h-align-right', 490 490 ], 491 491 'justify' => [ 492 492 'title' => __( 'Justified', 'table-addons-for-elementor' ), 493 'icon' => ' fa fa-align-justify',493 'icon' => 'eicon-h-align-stretch', 494 494 ], 495 495 ], … … 514 514 Group_Control_Typography::get_type(), 515 515 [ 516 'label' => __( 'Typography', 'table-addons-for-elementor' ), 516 517 'name' => 'header_typography', 517 518 'selector' => '{{WRAPPER}} table.tafe-table .tafe-table-header', 518 'scheme' => Typography::TYPOGRAPHY_3,519 519 ] 520 520 ); … … 549 549 'left' => [ 550 550 'title' => __( 'Left', 'table-addons-for-elementor' ), 551 'icon' => ' fa fa-align-left',551 'icon' => 'eicon-h-align-left', 552 552 ], 553 553 'center' => [ 554 554 'title' => __( 'Center', 'table-addons-for-elementor' ), 555 'icon' => ' fa fa-align-center',555 'icon' => 'eicon-h-align-center', 556 556 ], 557 557 'right' => [ 558 558 'title' => __( 'Right', 'table-addons-for-elementor' ), 559 'icon' => ' fa fa-align-right',559 'icon' => 'eicon-h-align-right', 560 560 ], 561 561 'justify' => [ 562 562 'title' => __( 'Justified', 'table-addons-for-elementor' ), 563 'icon' => ' fa fa-align-justify',563 'icon' => 'eicon-h-align-stretch', 564 564 ], 565 565 ], … … 683 683 } 684 684 685 protected function _content_template() {685 protected function content_template() { 686 686 ?> 687 687 <table class="tafe-table"> -
table-addons-for-elementor/trunk/table-addons-for-elementor.php
r2701117 r2879853 4 4 * Description: Table extension for elementor page builder 5 5 * Plugin URI: https://iqbalbary.com/table-addons-for-elementor/ 6 * Version: 1. 2.06 * Version: 1.3.0 7 7 * Author: Iqbal Bary 8 8 * Author URI: https://iqbalbary.com/ … … 22 22 * Currently plugin version. 23 23 */ 24 define( 'TABLE_ADDONS_FOR_ELEMENTOR_VERSION', '1. 0.1' );24 define( 'TABLE_ADDONS_FOR_ELEMENTOR_VERSION', '1.4.0' ); 25 25 26 26 /**
Note: See TracChangeset
for help on using the changeset viewer.