Plugin Directory

Changeset 2700307


Ignore:
Timestamp:
03/27/2022 07:07:32 PM (4 years ago)
Author:
wpbits
Message:

Version 1.3.2

Location:
wpbits-addons-for-elementor/trunk
Files:
47 edited

Legend:

Unmodified
Added
Removed
  • wpbits-addons-for-elementor/trunk/class-wpbits.php

    r2543643 r2700307  
    1919     * @var string
    2020     */
    21     public $version = '1.3.1';
     21    public $version = '1.3.2';
    2222
    2323    /**
  • wpbits-addons-for-elementor/trunk/freemius/includes/class-freemius.php

    r2519129 r2700307  
    35513551         */
    35523552        static function _toggle_debug_mode() {
     3553            check_admin_referer( 'fs_toggle_debug_mode' );
     3554
    35533555            if ( ! is_super_admin() ) {
    35543556                return;
     
    35723574         */
    35733575        static function _get_debug_log() {
     3576            check_admin_referer( 'fs_get_debug_log' );
     3577
     3578            if ( ! is_super_admin() ) {
     3579                return;
     3580            }
     3581
     3582            $limit  = min( ! empty( $_POST['limit'] ) ? absint( $_POST['limit'] ) : 200, 200 );
     3583            $offset = min( ! empty( $_POST['offset'] ) ? absint( $_POST['offset'] ) : 200, 200 );
     3584
    35743585            $logs = FS_Logger::load_db_logs(
    35753586                fs_request_get( 'filters', false, 'post' ),
    3576                 ! empty( $_POST['limit'] ) && is_numeric( $_POST['limit'] ) ? $_POST['limit'] : 200,
    3577                 ! empty( $_POST['offset'] ) && is_numeric( $_POST['offset'] ) ? $_POST['offset'] : 0
     3587                $limit,
     3588                $offset
    35783589            );
    35793590
     
    40484059                $key = fs_strip_url_protocol( get_site_url( $blog_id ) );
    40494060
    4050                 $secure_auth = SECURE_AUTH_KEY;
     4061                $secure_auth = defined( 'SECURE_AUTH_KEY' ) ? SECURE_AUTH_KEY : '';
    40514062                if ( empty( $secure_auth ) ||
    40524063                     false !== strpos( $secure_auth, ' ' ) ||
     
    44484459         */
    44494460        function _email_about_firewall_issue() {
     4461            check_admin_referer( 'fs_resolve_firewall_issues' );
     4462
     4463            if ( ! current_user_can( is_multisite() ? 'manage_options' : 'activate_plugins' ) ) {
     4464                return;
     4465            }
     4466
    44504467            $this->_admin_notices->remove_sticky( 'failed_connect_api' );
    44514468
     
    45224539         */
    45234540        function _retry_connectivity_test() {
     4541            check_admin_referer( 'fs_retry_connectivity_test' );
     4542
     4543            if ( ! current_user_can( is_multisite() ? 'manage_options' : 'activate_plugins' ) ) {
     4544                return;
     4545            }
     4546
    45244547            $this->_admin_notices->remove_sticky( 'failed_connect_api_first' );
    45254548
  • wpbits-addons-for-elementor/trunk/freemius/includes/managers/class-fs-admin-notice-manager.php

    r2519129 r2700307  
    176176         */
    177177        function dismiss_notice_ajax_callback() {
    178             $this->_sticky_storage->remove( $_POST['message_id'] );
     178            check_admin_referer( 'fs_dismiss_notice_action' );
     179
     180            if ( ! is_numeric( $_POST['message_id'] ) ) {
     181                $this->_sticky_storage->remove( $_POST['message_id'] );
     182            }
     183
    179184            wp_die();
    180185        }
  • wpbits-addons-for-elementor/trunk/freemius/includes/sdk/Exceptions/ArgumentNotExistException.php

    r2519129 r2700307  
    11<?php
     2    if ( ! defined( 'ABSPATH' ) ) {
     3        exit;
     4    }
     5
    26    if ( ! class_exists( 'Freemius_InvalidArgumentException' ) ) {
    37        exit;
  • wpbits-addons-for-elementor/trunk/freemius/includes/sdk/Exceptions/EmptyArgumentException.php

    r2519129 r2700307  
    11<?php
     2    if ( ! defined( 'ABSPATH' ) ) {
     3        exit;
     4    }
     5
    26    if ( ! class_exists( 'Freemius_InvalidArgumentException' ) ) {
    37        exit;
  • wpbits-addons-for-elementor/trunk/freemius/includes/sdk/Exceptions/Exception.php

    r2519129 r2700307  
    11<?php
     2        if ( ! defined( 'ABSPATH' ) ) {
     3            exit;
     4        }
     5
    26    if ( ! class_exists( 'Freemius_Exception' ) ) {
    37        /**
  • wpbits-addons-for-elementor/trunk/freemius/includes/sdk/Exceptions/InvalidArgumentException.php

    r2519129 r2700307  
    11<?php
     2    if ( ! defined( 'ABSPATH' ) ) {
     3        exit;
     4    }
     5
    26    if ( ! class_exists( 'Freemius_Exception' ) ) {
    37        exit;
  • wpbits-addons-for-elementor/trunk/freemius/includes/sdk/Exceptions/OAuthException.php

    r2519129 r2700307  
    11<?php
     2    if ( ! defined( 'ABSPATH' ) ) {
     3        exit;
     4    }
     5
    26    if ( ! class_exists( 'Freemius_Exception' ) ) {
    37        exit;
  • wpbits-addons-for-elementor/trunk/freemius/includes/sdk/FreemiusBase.php

    r2519129 r2700307  
    1616     */
    1717
     18    if ( ! defined( 'ABSPATH' ) ) {
     19        exit;
     20    }
     21
    1822    if ( ! defined( 'FS_API__VERSION' ) ) {
    1923        define( 'FS_API__VERSION', '1' );
  • wpbits-addons-for-elementor/trunk/freemius/includes/sdk/FreemiusWordPress.php

    r2519129 r2700307  
    1515     * under the License.
    1616     */
     17    if ( ! defined( 'ABSPATH' ) ) {
     18        exit;
     19    }
    1720
    1821    require_once dirname( __FILE__ ) . '/FreemiusBase.php';
  • wpbits-addons-for-elementor/trunk/freemius/require.php

    r2519129 r2700307  
    66     * @since       1.1.9
    77     */
     8
     9    if ( ! defined( 'ABSPATH' ) ) {
     10        exit;
     11    }
    812
    913    // Configuration should be loaded first.
  • wpbits-addons-for-elementor/trunk/freemius/start.php

    r2519129 r2700307  
    1616     * @var string
    1717     */
    18     $this_sdk_version = '2.4.2';
     18    $this_sdk_version = '2.4.3';
    1919
    2020    #region SDK Selection Logic --------------------------------------------------------------------
  • wpbits-addons-for-elementor/trunk/freemius/templates/account/partials/addon.php

    r2519129 r2700307  
    11<?php
     2
     3    if ( ! defined( 'ABSPATH' ) ) {
     4        exit;
     5    }
     6
    27    /**
    38     * @var array    $VARS
  • wpbits-addons-for-elementor/trunk/freemius/templates/ajax-loader.php

    r2519129 r2700307  
     1<?php
     2    if ( ! defined( 'ABSPATH' ) ) {
     3        exit;
     4    }
     5?>
    16<div class="fs-ajax-loader" style="display: none"><?php for ( $i = 1; $i <= 8; $i ++ ) : ?><div class="fs-ajax-loader-bar fs-ajax-loader-bar-<?php echo $i ?>"></div><?php endfor ?></div>
  • wpbits-addons-for-elementor/trunk/freemius/templates/debug.php

    r2519129 r2700307  
    3838                    $.post( ajaxurl, {
    3939                        action: 'fs_toggle_debug_mode',
     40                        // As such we don't need to use `wp_json_encode` method but using it to follow wp.org guideline.
     41                        _wpnonce   : <?php echo wp_json_encode( wp_create_nonce( 'fs_toggle_debug_mode' ) ); ?>,
    4042                        is_on : ($(this).hasClass( 'fs-on' ) ? 1 : 0)
    4143                    }, function ( response ) {
     
    112114                $.post(ajaxurl, {
    113115                    action     : 'fs_get_db_option',
    114                     _wpnonce   : '<?php echo wp_create_nonce( 'fs_get_db_option' ) ?>',
     116                    // As such we don't need to use `wp_json_encode` method but using it to follow wp.org guideline.
     117                    _wpnonce   : <?php echo wp_json_encode( wp_create_nonce( 'fs_get_db_option' ) ); ?>,
    115118                    option_name: optionName
    116119                }, function (response) {
     
    132135                    $.post(ajaxurl, {
    133136                        action      : 'fs_set_db_option',
    134                         _wpnonce   : '<?php echo wp_create_nonce( 'fs_set_db_option' ) ?>',
     137                        // As such we don't need to use `wp_json_encode` method but using it to follow wp.org guideline.
     138                        _wpnonce    : <?php echo wp_json_encode( wp_create_nonce( 'fs_set_db_option' ) ); ?>,
    135139                        option_name : optionName,
    136140                        option_value: optionValue
     
    725729                $.post(ajaxurl, {
    726730                    action : 'fs_get_debug_log',
     731                    // As such we don't need to use `wp_json_encode` method but using it to follow wp.org guideline.
     732                    _wpnonce : <?php echo wp_json_encode( wp_create_nonce( 'fs_get_debug_log' ) ); ?>,
    727733                    filters: filters,
    728734                    offset : offset,
  • wpbits-addons-for-elementor/trunk/freemius/templates/firewall-issues-js.php

    r2519129 r2700307  
    2323                ajaxActionSuffix = notice.attr( 'data-manager-id' ).replace( ':', '-' );
    2424
    25             var data = {
    26                 action    : 'fs_resolve_firewall_issues_' + ajaxActionSuffix,
    27                 error_type: error_type
    28             };
     25            var data = {
     26                action   : 'fs_resolve_firewall_issues_' + ajaxActionSuffix,
     27                // As such we don't need to use `wp_json_encode` method but using it to follow wp.org guideline.
     28                _wpnonce : <?php echo wp_json_encode( wp_create_nonce( 'fs_resolve_firewall_issues' ) ); ?>,
     29                error_type: error_type
     30            };
    2931
    3032            if ( 'squid' === error_type ) {
     
    4042
    4143            if ( 'retry_ping' === error_type ) {
    42                 data.action = 'fs_retry_connectivity_test_' + ajaxActionSuffix;
     44                data.action   = 'fs_retry_connectivity_test_' + ajaxActionSuffix;
     45                // As such we don't need to use `wp_json_encode` method but using it to follow wp.org guideline.
     46                data._wpnonce = <?php echo wp_json_encode( wp_create_nonce( 'fs_retry_connectivity_test' ) ); ?>;
    4347            }
    4448
  • wpbits-addons-for-elementor/trunk/freemius/templates/partials/network-activation.php

    r2519129 r2700307  
    11<?php
     2
     3    if ( ! defined( 'ABSPATH' ) ) {
     4        exit;
     5    }
     6
    27    /**
    38     * @var array $VARS
  • wpbits-addons-for-elementor/trunk/freemius/templates/sticky-admin-notice-js.php

    r2519129 r2700307  
    2424            notice.fadeOut( 'fast', function() {
    2525                var data = {
    26                     action    : 'fs_dismiss_notice_action_' + ajaxActionSuffix,
     26                    action   : 'fs_dismiss_notice_action_' + ajaxActionSuffix,
     27                    // As such we don't need to use `wp_json_encode` method but using it to follow wp.org guideline.
     28                    _wpnonce : <?php echo wp_json_encode( wp_create_nonce( 'fs_dismiss_notice_action' ) ); ?>,
    2729                    message_id: id
    2830                };
  • wpbits-addons-for-elementor/trunk/i18n/languages/wpbits-addons-for-elementor.pot

    r2543643 r2700307  
    1 # Copyright (C) 2021 WPBits
     1# Copyright (C) 2022 WPBits
    22# This file is distributed under the GPL3.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WPBits Addons For Elementor 1.3.1\n"
     5"Project-Id-Version: WPBits Addons For Elementor 1.3.2\n"
    66"Report-Msgid-Bugs-To: https://wpbits.net\n"
    7 "POT-Creation-Date: 2021-06-07 11:21:28+00:00\n"
     7"POT-Creation-Date: 2022-03-27 18:53:25+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=utf-8\n"
    1010"Content-Transfer-Encoding: 8bit\n"
    11 "PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
     11"PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
    1212"Last-Translator: \n"
    1313"Language-Team: WPBits\n"
     
    623623
    624624#: includes/cmb2/includes/CMB2_Hookup.php:561
    625 #: svn/trunk/includes/cmb2/includes/CMB2_Hookup.php:560
     625#: svn/trunk/includes/cmb2/includes/CMB2_Hookup.php:561
    626626msgid "Toggle panel: %s"
    627627msgstr ""
     
    11451145#: svn/trunk/includes/widgets/icon-box.php:83
    11461146#: svn/trunk/includes/widgets/icon-box.php:367
    1147 #: svn/trunk/includes/widgets/photo_gallery.php:646
    1148 #: svn/trunk/includes/widgets/photo_gallery.php:669
     1147#: svn/trunk/includes/widgets/photo_gallery.php:631
     1148#: svn/trunk/includes/widgets/photo_gallery.php:654
    11491149#: svn/trunk/includes/widgets/price_table.php:53
    11501150#: svn/trunk/includes/widgets/price_table.php:282
     
    14481448#: svn/trunk/includes/widgets/login_form.php:1182
    14491449#: svn/trunk/includes/widgets/logo_grid.php:464
    1450 #: svn/trunk/includes/widgets/photo_gallery.php:195
    1451 #: svn/trunk/includes/widgets/photo_gallery.php:336
     1450#: svn/trunk/includes/widgets/photo_gallery.php:180
     1451#: svn/trunk/includes/widgets/photo_gallery.php:321
    14521452#: svn/trunk/includes/widgets/price_table.php:368
    14531453#: svn/trunk/includes/widgets/price_table.php:1726
     
    15481548#: svn/trunk/includes/widgets/logo_grid.php:487
    15491549#: svn/trunk/includes/widgets/logo_grid.php:550
    1550 #: svn/trunk/includes/widgets/photo_gallery.php:218
    1551 #: svn/trunk/includes/widgets/photo_gallery.php:282
     1550#: svn/trunk/includes/widgets/photo_gallery.php:203
     1551#: svn/trunk/includes/widgets/photo_gallery.php:267
    15521552#: svn/trunk/includes/widgets/piechart.php:192
    15531553#: svn/trunk/includes/widgets/price_menu.php:223
     
    16831683#: svn/trunk/includes/widgets/logo_grid.php:558
    16841684#: svn/trunk/includes/widgets/logo_grid.php:672
    1685 #: svn/trunk/includes/widgets/photo_gallery.php:226
    1686 #: svn/trunk/includes/widgets/photo_gallery.php:290
    1687 #: svn/trunk/includes/widgets/photo_gallery.php:488
    1688 #: svn/trunk/includes/widgets/photo_gallery.php:619
    1689 #: svn/trunk/includes/widgets/photo_gallery.php:732
     1685#: svn/trunk/includes/widgets/photo_gallery.php:211
     1686#: svn/trunk/includes/widgets/photo_gallery.php:275
     1687#: svn/trunk/includes/widgets/photo_gallery.php:473
     1688#: svn/trunk/includes/widgets/photo_gallery.php:604
     1689#: svn/trunk/includes/widgets/photo_gallery.php:717
    16901690#: svn/trunk/includes/widgets/price_menu.php:231
    16911691#: svn/trunk/includes/widgets/price_menu.php:341
     
    18051805#: svn/trunk/includes/widgets/logo_grid.php:571
    18061806#: svn/trunk/includes/widgets/logo_grid.php:685
    1807 #: svn/trunk/includes/widgets/photo_gallery.php:249
    1808 #: svn/trunk/includes/widgets/photo_gallery.php:312
    1809 #: svn/trunk/includes/widgets/photo_gallery.php:754
     1807#: svn/trunk/includes/widgets/photo_gallery.php:234
     1808#: svn/trunk/includes/widgets/photo_gallery.php:297
     1809#: svn/trunk/includes/widgets/photo_gallery.php:739
    18101810#: svn/trunk/includes/widgets/piechart.php:201
    18111811#: svn/trunk/includes/widgets/price_menu.php:244
     
    18701870#: svn/trunk/includes/widgets/heading.php:464
    18711871#: svn/trunk/includes/widgets/login_form.php:399
    1872 #: svn/trunk/includes/widgets/photo_gallery.php:359
    1873 #: svn/trunk/includes/widgets/photo_gallery.php:394
     1872#: svn/trunk/includes/widgets/photo_gallery.php:344
     1873#: svn/trunk/includes/widgets/photo_gallery.php:379
    18741874#: svn/trunk/includes/widgets/price_table.php:493
    18751875#: svn/trunk/includes/widgets/price_table.php:601
     
    19071907#: svn/trunk/includes/widgets/login_form.php:1243
    19081908#: svn/trunk/includes/widgets/logo_grid.php:527
    1909 #: svn/trunk/includes/widgets/photo_gallery.php:259
    1910 #: svn/trunk/includes/widgets/photo_gallery.php:371
     1909#: svn/trunk/includes/widgets/photo_gallery.php:244
     1910#: svn/trunk/includes/widgets/photo_gallery.php:356
    19111911#: svn/trunk/includes/widgets/price_table.php:1789
    19121912#: svn/trunk/includes/widgets/team_member.php:386
     
    19891989#: svn/trunk/includes/widgets/login_form.php:1324
    19901990#: svn/trunk/includes/widgets/login_form.php:1462
    1991 #: svn/trunk/includes/widgets/photo_gallery.php:476
     1991#: svn/trunk/includes/widgets/photo_gallery.php:461
    19921992#: svn/trunk/includes/widgets/price_menu.php:271
    19931993#: svn/trunk/includes/widgets/price_menu.php:372
     
    21082108#: svn/trunk/includes/widgets/login_form.php:1486
    21092109#: svn/trunk/includes/widgets/logo_grid.php:602
    2110 #: svn/trunk/includes/widgets/photo_gallery.php:549
     2110#: svn/trunk/includes/widgets/photo_gallery.php:534
    21112111#: svn/trunk/includes/widgets/piechart.php:288
    21122112#: svn/trunk/includes/widgets/piechart.php:326
     
    22292229#: svn/trunk/includes/widgets/logo_grid.php:320
    22302230#: svn/trunk/includes/widgets/logo_grid.php:626
    2231 #: svn/trunk/includes/widgets/photo_gallery.php:166
    2232 #: svn/trunk/includes/widgets/photo_gallery.php:561
     2231#: svn/trunk/includes/widgets/photo_gallery.php:151
     2232#: svn/trunk/includes/widgets/photo_gallery.php:546
    22332233#: svn/trunk/includes/widgets/piechart.php:173
    22342234#: svn/trunk/includes/widgets/piechart.php:297
     
    23622362#: svn/trunk/includes/widgets/logo_grid.php:364
    23632363#: svn/trunk/includes/widgets/logo_grid.php:660
    2364 #: svn/trunk/includes/widgets/photo_gallery.php:631
    2365 #: svn/trunk/includes/widgets/photo_gallery.php:720
     2364#: svn/trunk/includes/widgets/photo_gallery.php:616
     2365#: svn/trunk/includes/widgets/photo_gallery.php:705
    23662366#: svn/trunk/includes/widgets/price_menu.php:259
    23672367#: svn/trunk/includes/widgets/price_menu.php:360
     
    24352435#: svn/trunk/includes/widgets/button.php:686
    24362436#: svn/trunk/includes/widgets/button.php:700
    2437 #: svn/trunk/includes/widgets/photo_gallery.php:696
     2437#: svn/trunk/includes/widgets/photo_gallery.php:681
    24382438#: svn/trunk/includes/widgets/price_table.php:291
    24392439#: svn/trunk/includes/widgets/shape.php:384
     
    27602760#: svn/trunk/includes/widgets/icon-box.php:405
    27612761#: svn/trunk/includes/widgets/logo_grid.php:202
    2762 #: svn/trunk/includes/widgets/photo_gallery.php:596
     2762#: svn/trunk/includes/widgets/photo_gallery.php:581
    27632763#: svn/trunk/includes/widgets/price_table.php:157
    27642764#: svn/trunk/includes/widgets/tabs.php:290
     
    28572857#: svn/trunk/includes/widgets/login_form.php:1415
    28582858#: svn/trunk/includes/widgets/login_form.php:1516
    2859 #: svn/trunk/includes/widgets/photo_gallery.php:430
    2860 #: svn/trunk/includes/widgets/photo_gallery.php:457
    2861 #: svn/trunk/includes/widgets/photo_gallery.php:600
     2859#: svn/trunk/includes/widgets/photo_gallery.php:415
     2860#: svn/trunk/includes/widgets/photo_gallery.php:442
     2861#: svn/trunk/includes/widgets/photo_gallery.php:585
    28622862#: svn/trunk/includes/widgets/piechart.php:224
    28632863#: svn/trunk/includes/widgets/price_table.php:435
     
    29312931#: svn/trunk/includes/widgets/icon-box.php:413
    29322932#: svn/trunk/includes/widgets/logo_grid.php:201
    2933 #: svn/trunk/includes/widgets/photo_gallery.php:604
     2933#: svn/trunk/includes/widgets/photo_gallery.php:589
    29342934#: svn/trunk/includes/widgets/price_table.php:161
    29352935#: svn/trunk/includes/widgets/tabs.php:294
     
    30523052#: svn/trunk/includes/widgets/login_form.php:1146
    30533053#: svn/trunk/includes/widgets/login_form.php:1407
    3054 #: svn/trunk/includes/widgets/photo_gallery.php:422
     3054#: svn/trunk/includes/widgets/photo_gallery.php:407
    30553055#: svn/trunk/includes/widgets/piechart.php:216
    30563056#: svn/trunk/includes/widgets/price_table.php:153
     
    31213121#: svn/trunk/includes/widgets/login_form.php:1411
    31223122#: svn/trunk/includes/widgets/login_form.php:1512
    3123 #: svn/trunk/includes/widgets/photo_gallery.php:426
    3124 #: svn/trunk/includes/widgets/photo_gallery.php:453
     3123#: svn/trunk/includes/widgets/photo_gallery.php:411
     3124#: svn/trunk/includes/widgets/photo_gallery.php:438
    31253125#: svn/trunk/includes/widgets/piechart.php:220
    31263126#: svn/trunk/includes/widgets/price_table.php:431
     
    32073207#: svn/trunk/includes/widgets/login_form.php:1419
    32083208#: svn/trunk/includes/widgets/login_form.php:1520
    3209 #: svn/trunk/includes/widgets/photo_gallery.php:434
    3210 #: svn/trunk/includes/widgets/photo_gallery.php:461
     3209#: svn/trunk/includes/widgets/photo_gallery.php:419
     3210#: svn/trunk/includes/widgets/photo_gallery.php:446
    32113211#: svn/trunk/includes/widgets/piechart.php:228
    32123212#: svn/trunk/includes/widgets/price_table.php:439
     
    32733273#: svn/trunk/includes/widgets/banner.php:438
    32743274#: svn/trunk/includes/widgets/counter.php:186
    3275 #: svn/trunk/includes/widgets/photo_gallery.php:449
     3275#: svn/trunk/includes/widgets/photo_gallery.php:434
    32763276#: svn/trunk/includes/widgets/piechart.php:384
    32773277#: svn/trunk/includes/widgets/price_table.php:1226
     
    33213321#: svn/trunk/includes/widgets/heading.php:657
    33223322#: svn/trunk/includes/widgets/login_form.php:913
    3323 #: svn/trunk/includes/widgets/photo_gallery.php:523
     3323#: svn/trunk/includes/widgets/photo_gallery.php:508
    33243324#: svn/trunk/includes/widgets/price_menu.php:670
    33253325#: svn/trunk/includes/widgets/price_table.php:832
     
    33593359#: svn/trunk/includes/widgets/dropdown_button.php:306
    33603360#: svn/trunk/includes/widgets/logo_grid.php:144
    3361 #: svn/trunk/includes/widgets/photo_gallery.php:178
    3362 #: svn/trunk/includes/widgets/photo_gallery.php:414
     3361#: svn/trunk/includes/widgets/photo_gallery.php:163
     3362#: svn/trunk/includes/widgets/photo_gallery.php:399
    33633363#: svn/trunk/includes/widgets/price_table.php:1707
    33643364#: svn/trunk/includes/widgets/team_member.php:576
     
    34803480#: svn/trunk/includes/widgets/image_compare.php:203
    34813481#: svn/trunk/includes/widgets/login_form.php:268
    3482 #: svn/trunk/includes/widgets/photo_gallery.php:512
    3483 #: svn/trunk/includes/widgets/photo_gallery.php:658
     3482#: svn/trunk/includes/widgets/photo_gallery.php:497
     3483#: svn/trunk/includes/widgets/photo_gallery.php:643
    34843484#: svn/trunk/includes/widgets/piechart.php:56
    34853485#: svn/trunk/includes/widgets/piechart.php:152
     
    35053505#: svn/trunk/includes/widgets/image_compare.php:207
    35063506#: svn/trunk/includes/widgets/login_form.php:269
    3507 #: svn/trunk/includes/widgets/photo_gallery.php:513
    3508 #: svn/trunk/includes/widgets/photo_gallery.php:659
     3507#: svn/trunk/includes/widgets/photo_gallery.php:498
     3508#: svn/trunk/includes/widgets/photo_gallery.php:644
    35093509#: svn/trunk/includes/widgets/piechart.php:57
    35103510#: svn/trunk/includes/widgets/piechart.php:153
     
    35953595#: svn/trunk/includes/widgets/business_hours.php:221
    35963596#: svn/trunk/includes/widgets/logo_grid.php:616
    3597 #: svn/trunk/includes/widgets/photo_gallery.php:574
     3597#: svn/trunk/includes/widgets/photo_gallery.php:559
    35983598#: svn/trunk/includes/widgets/team_member.php:760
    35993599#: svn/trunk/includes/widgets/team_member.php:878
     
    40284028#: svn/trunk/includes/widgets/counter.php:647
    40294029#: svn/trunk/includes/widgets/counter.php:706
    4030 #: svn/trunk/includes/widgets/photo_gallery.php:584
    4031 #: svn/trunk/includes/widgets/photo_gallery.php:745
     4030#: svn/trunk/includes/widgets/photo_gallery.php:569
     4031#: svn/trunk/includes/widgets/photo_gallery.php:730
    40324032#: svn/trunk/includes/widgets/piechart.php:347
    40334033#: svn/trunk/includes/widgets/piechart.php:436
     
    42004200#: includes/widgets/photo_gallery.php:693
    42014201#: svn/trunk/includes/widgets/dropdown_button.php:488
    4202 #: svn/trunk/includes/widgets/photo_gallery.php:708
     4202#: svn/trunk/includes/widgets/photo_gallery.php:693
    42034203msgid "Icon Background Color"
    42044204msgstr ""
     
    44544454#: svn/trunk/includes/widgets/image_compare.php:31
    44554455#: svn/trunk/includes/widgets/logo_grid.php:31
    4456 #: svn/trunk/includes/widgets/photo_gallery.php:35
    44574456#: svn/trunk/includes/widgets/price_menu.php:27
    44584457#: svn/trunk/includes/widgets/team_member.php:35
     
    44654464#: includes/widgets/image_compare.php:44 includes/widgets/photo_gallery.php:38
    44664465#: svn/trunk/includes/widgets/image_compare.php:44
    4467 #: svn/trunk/includes/widgets/photo_gallery.php:48
     4466#: svn/trunk/includes/widgets/photo_gallery.php:38
    44684467msgid "Images"
    44694468msgstr ""
     
    45624561#: includes/widgets/photo_gallery.php:311
    45634562#: svn/trunk/includes/widgets/image_compare.php:422
    4564 #: svn/trunk/includes/widgets/photo_gallery.php:326
     4563#: svn/trunk/includes/widgets/photo_gallery.php:311
    45654564msgid "Overlay"
    45664565msgstr ""
     
    48854884#: includes/widgets/logo_grid.php:263 includes/widgets/photo_gallery.php:81
    48864885#: svn/trunk/includes/widgets/logo_grid.php:263
    4887 #: svn/trunk/includes/widgets/photo_gallery.php:92
     4886#: svn/trunk/includes/widgets/photo_gallery.php:81
    48884887msgid "Columns"
    48894888msgstr ""
     
    49094908#: svn/trunk/includes/widgets/logo_grid.php:471
    49104909#: svn/trunk/includes/widgets/logo_grid.php:534
    4911 #: svn/trunk/includes/widgets/photo_gallery.php:202
    4912 #: svn/trunk/includes/widgets/photo_gallery.php:266
    4913 #: svn/trunk/includes/widgets/photo_gallery.php:343
    4914 #: svn/trunk/includes/widgets/photo_gallery.php:378
     4910#: svn/trunk/includes/widgets/photo_gallery.php:187
     4911#: svn/trunk/includes/widgets/photo_gallery.php:251
     4912#: svn/trunk/includes/widgets/photo_gallery.php:328
     4913#: svn/trunk/includes/widgets/photo_gallery.php:363
    49154914#: svn/trunk/includes/widgets/team_member.php:360
    49164915#: svn/trunk/includes/widgets/team_member.php:393
     
    49294928#: svn/trunk/includes/widgets/logo_grid.php:517
    49304929#: svn/trunk/includes/widgets/logo_grid.php:580
    4931 #: svn/trunk/includes/widgets/photo_gallery.php:240
    4932 #: svn/trunk/includes/widgets/photo_gallery.php:303
     4930#: svn/trunk/includes/widgets/photo_gallery.php:225
     4931#: svn/trunk/includes/widgets/photo_gallery.php:288
    49334932#: svn/trunk/includes/widgets/team_member.php:376
    49344933#: svn/trunk/includes/widgets/team_member.php:409
     
    49444943
    49454944#: includes/widgets/photo_gallery.php:46
    4946 #: svn/trunk/includes/widgets/photo_gallery.php:56
     4945#: svn/trunk/includes/widgets/photo_gallery.php:46
    49474946msgid "Gallery Images"
    49484947msgstr ""
    49494948
    49504949#: includes/widgets/photo_gallery.php:62
     4950#: svn/trunk/includes/widgets/photo_gallery.php:62
    49514951msgid "Thumbnail size"
    49524952msgstr ""
    49534953
    49544954#: includes/widgets/photo_gallery.php:73
    4955 #: svn/trunk/includes/widgets/photo_gallery.php:84
     4955#: svn/trunk/includes/widgets/photo_gallery.php:73
    49564956msgid "Masonry Settings"
    49574957msgstr ""
    49584958
    49594959#: includes/widgets/photo_gallery.php:85
    4960 #: svn/trunk/includes/widgets/photo_gallery.php:96
     4960#: svn/trunk/includes/widgets/photo_gallery.php:85
    49614961msgid "1 Column"
    49624962msgstr ""
    49634963
    49644964#: includes/widgets/photo_gallery.php:86
    4965 #: svn/trunk/includes/widgets/photo_gallery.php:97
     4965#: svn/trunk/includes/widgets/photo_gallery.php:86
    49664966msgid "2 Column"
    49674967msgstr ""
    49684968
    49694969#: includes/widgets/photo_gallery.php:87
    4970 #: svn/trunk/includes/widgets/photo_gallery.php:98
     4970#: svn/trunk/includes/widgets/photo_gallery.php:87
    49714971msgid "3 Column"
    49724972msgstr ""
    49734973
    49744974#: includes/widgets/photo_gallery.php:88
    4975 #: svn/trunk/includes/widgets/photo_gallery.php:99
     4975#: svn/trunk/includes/widgets/photo_gallery.php:88
    49764976msgid "4 Column"
    49774977msgstr ""
    49784978
    49794979#: includes/widgets/photo_gallery.php:89
    4980 #: svn/trunk/includes/widgets/photo_gallery.php:100
     4980#: svn/trunk/includes/widgets/photo_gallery.php:89
    49814981msgid "5 Column"
    49824982msgstr ""
     
    49844984#: includes/widgets/photo_gallery.php:97 includes/widgets/price_menu.php:536
    49854985#: includes/widgets/timeline.php:202
    4986 #: svn/trunk/includes/widgets/photo_gallery.php:108
     4986#: svn/trunk/includes/widgets/photo_gallery.php:97
    49874987#: svn/trunk/includes/widgets/price_menu.php:536
    49884988#: svn/trunk/includes/widgets/timeline.php:202
     
    49914991
    49924992#: includes/widgets/photo_gallery.php:117
    4993 #: svn/trunk/includes/widgets/photo_gallery.php:132
     4993#: svn/trunk/includes/widgets/photo_gallery.php:117
    49944994msgid "Margin Bottom"
    49954995msgstr ""
     
    49984998#: includes/widgets/team_member.php:109 includes/widgets/team_member.php:257
    49994999#: includes/widgets/testimonial.php:66 includes/widgets/testimonial.php:960
    5000 #: svn/trunk/includes/widgets/photo_gallery.php:158
     5000#: svn/trunk/includes/widgets/photo_gallery.php:143
    50015001#: svn/trunk/includes/widgets/price_menu.php:662
    50025002#: svn/trunk/includes/widgets/team_member.php:109
     
    50085008
    50095009#: includes/widgets/photo_gallery.php:488
    5010 #: svn/trunk/includes/widgets/photo_gallery.php:503
     5010#: svn/trunk/includes/widgets/photo_gallery.php:488
    50115011msgid "Caption"
    50125012msgstr ""
    50135013
    50145014#: includes/widgets/photo_gallery.php:495
    5015 #: svn/trunk/includes/widgets/photo_gallery.php:510
     5015#: svn/trunk/includes/widgets/photo_gallery.php:495
    50165016msgid "Display Caption"
    50175017msgstr ""
     
    50205020#: includes/widgets/team_member.php:549 includes/widgets/testimonial.php:461
    50215021#: includes/widgets/testimonial.php:578
    5022 #: svn/trunk/includes/widgets/photo_gallery.php:592
     5022#: svn/trunk/includes/widgets/photo_gallery.php:577
    50235023#: svn/trunk/includes/widgets/tabs.php:368
    50245024#: svn/trunk/includes/widgets/team_member.php:549
     
    50295029
    50305030#: includes/widgets/photo_gallery.php:641
    5031 #: svn/trunk/includes/widgets/photo_gallery.php:656
     5031#: svn/trunk/includes/widgets/photo_gallery.php:641
    50325032msgid "Display Icon"
    50335033msgstr ""
    50345034
    50355035#: includes/widgets/photo_gallery.php:666 includes/widgets/team_member.php:1003
    5036 #: svn/trunk/includes/widgets/photo_gallery.php:681
     5036#: svn/trunk/includes/widgets/photo_gallery.php:666
    50375037#: svn/trunk/includes/widgets/team_member.php:1003
    50385038msgid "Size (px)"
     
    51725172#: includes/widgets/price_menu.php:163 includes/widgets/team_member.php:265
    51735173#: includes/widgets/testimonial.php:968
    5174 #: svn/trunk/includes/widgets/photo_gallery.php:72
    51755174#: svn/trunk/includes/widgets/price_menu.php:163
    51765175#: svn/trunk/includes/widgets/team_member.php:265
  • wpbits-addons-for-elementor/trunk/includes/widgets/accordion.php

    r2527942 r2700307  
    2626    }
    2727
    28     protected function _register_controls() {
     28    protected function register_controls() {
    2929        $this->start_controls_section(
    3030            'content_section',
  • wpbits-addons-for-elementor/trunk/includes/widgets/banner.php

    r2527942 r2700307  
    3838    }
    3939
    40     protected function _register_controls() {
     40    protected function register_controls() {
    4141        // section start
    4242        $this->start_controls_section(
  • wpbits-addons-for-elementor/trunk/includes/widgets/business_hours.php

    r2527942 r2700307  
    2222    }
    2323
    24     protected function _register_controls() {
     24    protected function register_controls() {
    2525        $this->start_controls_section(
    2626            'content_section',
  • wpbits-addons-for-elementor/trunk/includes/widgets/button.php

    r2527942 r2700307  
    3838    }
    3939
    40     protected function _register_controls() {
     40    protected function register_controls() {
    4141        // section start
    4242        $this->start_controls_section(
  • wpbits-addons-for-elementor/trunk/includes/widgets/contact_form_7.php

    r2527942 r2700307  
    3333    }
    3434   
    35     protected function _register_controls() {
     35    protected function register_controls() {
    3636        // section start
    3737        $this->start_controls_section(
  • wpbits-addons-for-elementor/trunk/includes/widgets/countdown.php

    r2527942 r2700307  
    2626    }
    2727   
    28     protected function _register_controls() {
     28    protected function register_controls() {
    2929
    3030        // section start
  • wpbits-addons-for-elementor/trunk/includes/widgets/counter.php

    r2527942 r2700307  
    2626    }
    2727   
    28     protected function _register_controls() {
     28    protected function register_controls() {
    2929
    3030        // section start
  • wpbits-addons-for-elementor/trunk/includes/widgets/dropdown_button.php

    r2527942 r2700307  
    4242    }
    4343
    44     protected function _register_controls() {
     44    protected function register_controls() {
    4545        // section start
    4646        $this->start_controls_section(
  • wpbits-addons-for-elementor/trunk/includes/widgets/heading.php

    r2536693 r2700307  
    2222    }
    2323
    24     protected function _register_controls() {
     24    protected function register_controls() {
    2525
    2626        // section start
  • wpbits-addons-for-elementor/trunk/includes/widgets/hotspot.php

    r2527942 r2700307  
    2222    }
    2323
    24     protected function _register_controls() {
     24    protected function register_controls() {
    2525        $this->start_controls_section(
    2626            'content_section',
  • wpbits-addons-for-elementor/trunk/includes/widgets/icon-box.php

    r2536693 r2700307  
    2323   
    2424
    25     protected function _register_controls() {
     25    protected function register_controls() {
    2626        // section start
    2727        $this->start_controls_section(
  • wpbits-addons-for-elementor/trunk/includes/widgets/image_compare.php

    r2527942 r2700307  
    3636    }
    3737   
    38     protected function _register_controls() {
     38    protected function register_controls() {
    3939
    4040        // section start
  • wpbits-addons-for-elementor/trunk/includes/widgets/login_form.php

    r2527942 r2700307  
    2222    }
    2323   
    24     protected function _register_controls() {
     24    protected function register_controls() {
    2525        // section start
    2626        $this->start_controls_section(
  • wpbits-addons-for-elementor/trunk/includes/widgets/logo_grid.php

    r2527942 r2700307  
    3636    }
    3737   
    38     protected function _register_controls() {
     38    protected function register_controls() {
    3939
    4040        // section start
  • wpbits-addons-for-elementor/trunk/includes/widgets/photo_gallery.php

    r2543643 r2700307  
    3030    }
    3131   
    32     protected function _register_controls() {
     32    protected function register_controls() {
    3333
    3434        // section start
  • wpbits-addons-for-elementor/trunk/includes/widgets/piechart.php

    r2527942 r2700307  
    2626    }
    2727   
    28     protected function _register_controls() {
     28    protected function register_controls() {
    2929
    3030        // section start
  • wpbits-addons-for-elementor/trunk/includes/widgets/price_menu.php

    r2527942 r2700307  
    3232    }
    3333
    34     protected function _register_controls() {
     34    protected function register_controls() {
    3535        $this->start_controls_section(
    3636            'content_section',
  • wpbits-addons-for-elementor/trunk/includes/widgets/price_table.php

    r2527942 r2700307  
    3838    }
    3939   
    40     protected function _register_controls() {
     40    protected function register_controls() {
    4141        // section start
    4242        $this->start_controls_section(
  • wpbits-addons-for-elementor/trunk/includes/widgets/progress_bar.php

    r2527942 r2700307  
    2626    }
    2727   
    28     protected function _register_controls() {
     28    protected function register_controls() {
    2929
    3030        // section start
  • wpbits-addons-for-elementor/trunk/includes/widgets/shape.php

    r2519100 r2700307  
    2222    }
    2323   
    24     protected function _register_controls() {
     24    protected function register_controls() {
    2525
    2626        // section start
  • wpbits-addons-for-elementor/trunk/includes/widgets/tabs.php

    r2536693 r2700307  
    2626    }
    2727
    28     protected function _register_controls() {
     28    protected function register_controls() {
    2929        $this->start_controls_section(
    3030            'content_section',
  • wpbits-addons-for-elementor/trunk/includes/widgets/team_member.php

    r2527942 r2700307  
    9494    }
    9595   
    96     protected function _register_controls() {
     96    protected function register_controls() {
    9797        // section start
    9898        $this->start_controls_section(
  • wpbits-addons-for-elementor/trunk/includes/widgets/testimonial.php

    r2527942 r2700307  
    3232    }
    3333
    34     protected function _register_controls() {
     34    protected function register_controls() {
    3535        $this->start_controls_section(
    3636            'settings_section',
  • wpbits-addons-for-elementor/trunk/includes/widgets/text_rotator.php

    r2527942 r2700307  
    2525        return 'eicon-animation-text';
    2626    }
    27     protected function _register_controls() {
     27    protected function register_controls() {
    2828
    2929        // section start
  • wpbits-addons-for-elementor/trunk/includes/widgets/timeline.php

    r2527942 r2700307  
    3232    }
    3333
    34     protected function _register_controls() {
     34    protected function register_controls() {
    3535        $this->start_controls_section(
    3636            'content_section',
  • wpbits-addons-for-elementor/trunk/includes/widgets/tooltip.php

    r2527942 r2700307  
    3636    }
    3737       
    38     protected function _register_controls() {
     38    protected function register_controls() {
    3939
    4040        // section start
  • wpbits-addons-for-elementor/trunk/readme.txt

    r2543643 r2700307  
    7878== Changelog ==
    7979
     80= 1.3.2 =
     81* Added Elementor 3.3.6 support
     82* [update] Freemius framework package
     83
    8084= 1.3.1 =
    8185* [new] Added custom image size options to the Photo Gallery widget.
  • wpbits-addons-for-elementor/trunk/wpbits-addons-for-elementor.php

    r2543643 r2700307  
    44 * Plugin URI: https://wpbits.net/
    55 * Description: Addons for Elementor Page Builder
    6  * Version: 1.3.1
     6 * Version: 1.3.2
    77 * Author: WPBits
    88 * License: GPL3
Note: See TracChangeset for help on using the changeset viewer.