Plugin Directory

Changeset 3449413


Ignore:
Timestamp:
01/29/2026 09:46:10 AM (3 weeks ago)
Author:
coolplugins
Message:

Update to version 2.7.2 from GitHub

Location:
3r-elementor-timeline-widget
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • 3r-elementor-timeline-widget/tags/2.7.2/init.php

    r3423453 r3449413  
    55 * Description: Vertical Timeline Widget for Elementor Plugin add timeline element to Elementor Page builder.
    66 * Plugin URI: https://wordpress.org/plugins/3r-elementor-timeline-widget
    7  * Version:2.7.1
     7 * Version:2.7.2
    88 * Requires at least: 5.2
    99 * Requires PHP:7.2
     
    5757
    5858function twe_enqueue_style() {
    59     wp_enqueue_style( 'twe-preview', TWE_PLUGIN_URL  . 'assets/css/style.css', array());
     59    wp_enqueue_style( 'twe-preview', TWE_PLUGIN_URL . 'assets/css/style.css', array() ); // phpcs:ignore WordPress.WP.EnqueuedResourceParameters.MissingVersion -- version intentionally omitted
    6060}
    6161
  • 3r-elementor-timeline-widget/tags/2.7.2/readme.txt

    r3423453 r3449413  
    66Tested up to: 6.9
    77Requires PHP: 7.2
    8 Stable tag: 2.7.1
     8Stable tag: 2.7.2
    99License: GPL v2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    8585== Changelog ==
    8686
     87= Version 2.7.2 | 29 January 2026 =
     88* **Fixed:** Issues reported by “Plugin Check” plugin.
     89
    8790= Version 2.7.1 | 19 December 2025 =
    8891* Updated: Dashboard Links.
  • 3r-elementor-timeline-widget/tags/2.7.2/timeline-widget.php

    r3423398 r3449413  
    115115                'label'        => __( 'Year / Label (Top) <a href="https://cooltimeline.com/elementor-widget/vertical-timeline-widget-for-elementor/?utm_source=vtwe_plugin&utm_medium=inside&utm_campaign=demo&utm_content=content_tab_settings" target="_blank" style=" pointer-events: all; color:  #EDACFB;">(Demo ⇗)</a>', '3r-elementor-timeline-widget' ),
    116116                'type'         => \Elementor\Controls_Manager::SWITCHER,
    117                 'label_on'     => __( 'Show', 'twae' ),
    118                 'label_off'    => __( 'Hide', 'twae' ),
     117                'label_on'     => __( 'Show', 'twae' ), // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch -- using shared text domain intentionally
     118                'label_off'    => __( 'Hide', 'twae' ), // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch -- using shared text domain intentionally
    119119                'return_value' => 'yes',
    120120                'default'      => 'no',
     
    302302                'label'        => __( 'Read More Button', '3r-elementor-timeline-widget' ),
    303303                'type'         => \Elementor\Controls_Manager::SWITCHER,
    304                 'label_on'     => __( 'Show', 'twae' ),
    305                 'label_off'    => __( 'Hide', 'twae' ),
     304                'label_on'     => __( 'Show', 'twae' ), // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch -- using shared text domain intentionally
     305                'label_off'    => __( 'Hide', 'twae' ), // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch -- using shared text domain intentionally
    306306                'return_value' => 'yes',
    307307                'default'      => 'no',
     
    863863
    864864                        <div class="be-desc">
    865                             <?php echo $title_html;  ?>
     865                            <?php echo $title_html;  // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- already escaped in $title_html ?>
    866866                        </div>
    867867
     
    883883                        );
    884884                        ?>
    885 
    886                         <?php echo $content_html; ?>
     885                        <?php echo $content_html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- already escaped in $content_html ?>
    887886
    888887                 <?php else : ?>
     
    907906
    908907                        <div class="be-desc">
    909                             <?php echo $title_html;  ?>
    910                             <?php echo $content_html;  ?>
     908                            <?php echo $title_html;  // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- already escaped in $title_html ?>
     909                            <?php echo $content_html;  // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- already escaped in $content_html ?>
    911910                        </div>
    912911
  • 3r-elementor-timeline-widget/trunk/init.php

    r3423453 r3449413  
    55 * Description: Vertical Timeline Widget for Elementor Plugin add timeline element to Elementor Page builder.
    66 * Plugin URI: https://wordpress.org/plugins/3r-elementor-timeline-widget
    7  * Version:2.7.1
     7 * Version:2.7.2
    88 * Requires at least: 5.2
    99 * Requires PHP:7.2
     
    5757
    5858function twe_enqueue_style() {
    59     wp_enqueue_style( 'twe-preview', TWE_PLUGIN_URL  . 'assets/css/style.css', array());
     59    wp_enqueue_style( 'twe-preview', TWE_PLUGIN_URL . 'assets/css/style.css', array() ); // phpcs:ignore WordPress.WP.EnqueuedResourceParameters.MissingVersion -- version intentionally omitted
    6060}
    6161
  • 3r-elementor-timeline-widget/trunk/readme.txt

    r3423453 r3449413  
    66Tested up to: 6.9
    77Requires PHP: 7.2
    8 Stable tag: 2.7.1
     8Stable tag: 2.7.2
    99License: GPL v2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    8585== Changelog ==
    8686
     87= Version 2.7.2 | 29 January 2026 =
     88* **Fixed:** Issues reported by “Plugin Check” plugin.
     89
    8790= Version 2.7.1 | 19 December 2025 =
    8891* Updated: Dashboard Links.
  • 3r-elementor-timeline-widget/trunk/timeline-widget.php

    r3423398 r3449413  
    115115                'label'        => __( 'Year / Label (Top) <a href="https://cooltimeline.com/elementor-widget/vertical-timeline-widget-for-elementor/?utm_source=vtwe_plugin&utm_medium=inside&utm_campaign=demo&utm_content=content_tab_settings" target="_blank" style=" pointer-events: all; color:  #EDACFB;">(Demo ⇗)</a>', '3r-elementor-timeline-widget' ),
    116116                'type'         => \Elementor\Controls_Manager::SWITCHER,
    117                 'label_on'     => __( 'Show', 'twae' ),
    118                 'label_off'    => __( 'Hide', 'twae' ),
     117                'label_on'     => __( 'Show', 'twae' ), // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch -- using shared text domain intentionally
     118                'label_off'    => __( 'Hide', 'twae' ), // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch -- using shared text domain intentionally
    119119                'return_value' => 'yes',
    120120                'default'      => 'no',
     
    302302                'label'        => __( 'Read More Button', '3r-elementor-timeline-widget' ),
    303303                'type'         => \Elementor\Controls_Manager::SWITCHER,
    304                 'label_on'     => __( 'Show', 'twae' ),
    305                 'label_off'    => __( 'Hide', 'twae' ),
     304                'label_on'     => __( 'Show', 'twae' ), // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch -- using shared text domain intentionally
     305                'label_off'    => __( 'Hide', 'twae' ), // phpcs:ignore WordPress.WP.I18n.TextDomainMismatch -- using shared text domain intentionally
    306306                'return_value' => 'yes',
    307307                'default'      => 'no',
     
    863863
    864864                        <div class="be-desc">
    865                             <?php echo $title_html;  ?>
     865                            <?php echo $title_html;  // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- already escaped in $title_html ?>
    866866                        </div>
    867867
     
    883883                        );
    884884                        ?>
    885 
    886                         <?php echo $content_html; ?>
     885                        <?php echo $content_html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- already escaped in $content_html ?>
    887886
    888887                 <?php else : ?>
     
    907906
    908907                        <div class="be-desc">
    909                             <?php echo $title_html;  ?>
    910                             <?php echo $content_html;  ?>
     908                            <?php echo $title_html;  // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- already escaped in $title_html ?>
     909                            <?php echo $content_html;  // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- already escaped in $content_html ?>
    911910                        </div>
    912911
Note: See TracChangeset for help on using the changeset viewer.