Changeset 3449413
- Timestamp:
- 01/29/2026 09:46:10 AM (3 weeks ago)
- Location:
- 3r-elementor-timeline-widget
- Files:
-
- 6 edited
- 1 copied
-
tags/2.7.2 (copied) (copied from 3r-elementor-timeline-widget/trunk)
-
tags/2.7.2/init.php (modified) (2 diffs)
-
tags/2.7.2/readme.txt (modified) (2 diffs)
-
tags/2.7.2/timeline-widget.php (modified) (5 diffs)
-
trunk/init.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/timeline-widget.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
3r-elementor-timeline-widget/tags/2.7.2/init.php
r3423453 r3449413 5 5 * Description: Vertical Timeline Widget for Elementor Plugin add timeline element to Elementor Page builder. 6 6 * Plugin URI: https://wordpress.org/plugins/3r-elementor-timeline-widget 7 * Version:2.7. 17 * Version:2.7.2 8 8 * Requires at least: 5.2 9 9 * Requires PHP:7.2 … … 57 57 58 58 function 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 60 60 } 61 61 -
3r-elementor-timeline-widget/tags/2.7.2/readme.txt
r3423453 r3449413 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.2 8 Stable tag: 2.7. 18 Stable tag: 2.7.2 9 9 License: GPL v2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 85 85 == Changelog == 86 86 87 = Version 2.7.2 | 29 January 2026 = 88 * **Fixed:** Issues reported by “Plugin Check” plugin. 89 87 90 = Version 2.7.1 | 19 December 2025 = 88 91 * Updated: Dashboard Links. -
3r-elementor-timeline-widget/tags/2.7.2/timeline-widget.php
r3423398 r3449413 115 115 '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' ), 116 116 '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 119 119 'return_value' => 'yes', 120 120 'default' => 'no', … … 302 302 'label' => __( 'Read More Button', '3r-elementor-timeline-widget' ), 303 303 '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 306 306 'return_value' => 'yes', 307 307 'default' => 'no', … … 863 863 864 864 <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 ?> 866 866 </div> 867 867 … … 883 883 ); 884 884 ?> 885 886 <?php echo $content_html; ?> 885 <?php echo $content_html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- already escaped in $content_html ?> 887 886 888 887 <?php else : ?> … … 907 906 908 907 <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 ?> 911 910 </div> 912 911 -
3r-elementor-timeline-widget/trunk/init.php
r3423453 r3449413 5 5 * Description: Vertical Timeline Widget for Elementor Plugin add timeline element to Elementor Page builder. 6 6 * Plugin URI: https://wordpress.org/plugins/3r-elementor-timeline-widget 7 * Version:2.7. 17 * Version:2.7.2 8 8 * Requires at least: 5.2 9 9 * Requires PHP:7.2 … … 57 57 58 58 function 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 60 60 } 61 61 -
3r-elementor-timeline-widget/trunk/readme.txt
r3423453 r3449413 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.2 8 Stable tag: 2.7. 18 Stable tag: 2.7.2 9 9 License: GPL v2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 85 85 == Changelog == 86 86 87 = Version 2.7.2 | 29 January 2026 = 88 * **Fixed:** Issues reported by “Plugin Check” plugin. 89 87 90 = Version 2.7.1 | 19 December 2025 = 88 91 * Updated: Dashboard Links. -
3r-elementor-timeline-widget/trunk/timeline-widget.php
r3423398 r3449413 115 115 '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' ), 116 116 '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 119 119 'return_value' => 'yes', 120 120 'default' => 'no', … … 302 302 'label' => __( 'Read More Button', '3r-elementor-timeline-widget' ), 303 303 '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 306 306 'return_value' => 'yes', 307 307 'default' => 'no', … … 863 863 864 864 <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 ?> 866 866 </div> 867 867 … … 883 883 ); 884 884 ?> 885 886 <?php echo $content_html; ?> 885 <?php echo $content_html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- already escaped in $content_html ?> 887 886 888 887 <?php else : ?> … … 907 906 908 907 <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 ?> 911 910 </div> 912 911
Note: See TracChangeset
for help on using the changeset viewer.