Changeset 3088859
- Timestamp:
- 05/19/2024 05:04:54 AM (23 months ago)
- Location:
- move-addons
- Files:
-
- 14 edited
- 1 copied
-
tags/1.3.2 (copied) (copied from move-addons/trunk)
-
tags/1.3.2/includes/widgets/data-table/widget.php (modified) (3 diffs)
-
tags/1.3.2/includes/widgets/event-calendar/widget.php (modified) (1 diff)
-
tags/1.3.2/includes/widgets/mailchimp/widget.php (modified) (1 diff)
-
tags/1.3.2/includes/widgets/shop-product-grid/widget.php (modified) (1 diff)
-
tags/1.3.2/includes/widgets/team-member/widget.php (modified) (3 diffs)
-
tags/1.3.2/includes/widgets/user-login/widget.php (modified) (1 diff)
-
tags/1.3.2/move-addons.php (modified) (2 diffs)
-
trunk/includes/widgets/data-table/widget.php (modified) (3 diffs)
-
trunk/includes/widgets/event-calendar/widget.php (modified) (1 diff)
-
trunk/includes/widgets/mailchimp/widget.php (modified) (1 diff)
-
trunk/includes/widgets/shop-product-grid/widget.php (modified) (1 diff)
-
trunk/includes/widgets/team-member/widget.php (modified) (3 diffs)
-
trunk/includes/widgets/user-login/widget.php (modified) (1 diff)
-
trunk/move-addons.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
move-addons/tags/1.3.2/includes/widgets/data-table/widget.php
r3048903 r3088859 802 802 ?> 803 803 <div <?php echo $this->get_render_attribute_string( 'area_attr' ); ?> > 804 <table class="<?php if( $settings['show_datatable_sorting'] == 'yes' ){ echo 'htmove-datatable-'. $id; } ?>">804 <table class="<?php if( $settings['show_datatable_sorting'] == 'yes' ){ echo 'htmove-datatable-'.esc_attr($id); } ?>"> 805 805 <?php if( is_array( $headeres ) ): ?> 806 806 <thead> … … 822 822 if( $table_tr[$i]['id'] == $table_td[$j]['row_id'] ): 823 823 ?> 824 <td<?php echo $table_td[$j]['colspan'] > 1 ? ' colspan="'.$table_td[$j]['colspan'].'"' : ''; ?>><?php echo esc_html($table_td[$j]['title']); ?></td>824 <td<?php echo $table_td[$j]['colspan'] > 1 ? ' colspan="'.$table_td[$j]['colspan'].'"' : ''; ?>><?php echo wp_kses_post($table_td[$j]['title']); ?></td> 825 825 <?php endif; endfor; ?> 826 826 </tr> … … 834 834 ;jQuery(document).ready(function($) { 835 835 'use strict'; 836 $('.htmove-datatable-<?php echo $id; ?>').DataTable({836 $('.htmove-datatable-<?php echo esc_attr($id); ?>').DataTable({ 837 837 paging: <?php echo $settings['show_datatable_paging'] == 'yes' ? 'true' : 'false'; ?>, 838 838 searching: <?php echo $settings['show_datatable_searching'] == 'yes' ? 'true' : 'false'; ?>, -
move-addons/tags/1.3.2/includes/widgets/event-calendar/widget.php
r3048903 r3088859 930 930 ;jQuery(document).ready(function($) { 931 931 'use strict'; 932 var EventCalendarEl = document.getElementById('htmove-event-calendar-<?php echo $id; ?>');932 var EventCalendarEl = document.getElementById('htmove-event-calendar-<?php echo esc_attr($id); ?>'); 933 933 934 934 var defaultview = '<?php echo $settings['default_view']; ?>', -
move-addons/tags/1.3.2/includes/widgets/mailchimp/widget.php
r3048903 r3088859 726 726 <div class="htmove-message" style="display: none;"></div> 727 727 728 <form id="htmove-mailchimp-<?php echo $id; ?>" method="post">728 <form id="htmove-mailchimp-<?php echo esc_attr($id); ?>" method="post"> 729 729 730 730 <div class="htmove-form-group"> -
move-addons/tags/1.3.2/includes/widgets/shop-product-grid/widget.php
r3048903 r3088859 1201 1201 ?> 1202 1202 <li class="<?php echo implode( " ", $item_class ); ?>"> 1203 <div class="htmove-product htmove-product-<?php echo $settings['layout']; ?>">1203 <div class="htmove-product htmove-product-<?php echo esc_attr($settings['layout']); ?>"> 1204 1204 <div class="htmove-product-thumbnail"> 1205 1205 -
move-addons/tags/1.3.2/includes/widgets/team-member/widget.php
r3048903 r3088859 1462 1462 var thumbimg = <?php echo json_encode( $thumbimg ); ?>; 1463 1463 1464 var teamFourImage = new Swiper('.htmove-team-image-slider-<?php echo $id; ?> .swiper-container', {1464 var teamFourImage = new Swiper('.htmove-team-image-slider-<?php echo esc_attr($id); ?> .swiper-container', { 1465 1465 loop: true, 1466 1466 spaceBetween: 0, … … 1470 1470 allowTouchMove: false, 1471 1471 }); 1472 var teamFourContent = new Swiper('.htmove-team-content-slider-<?php echo $id; ?> .swiper-container', {1472 var teamFourContent = new Swiper('.htmove-team-content-slider-<?php echo esc_attr($id); ?> .swiper-container', { 1473 1473 loop: true, 1474 1474 spaceBetween: 0, … … 1476 1476 loopedSlides: 2, 1477 1477 pagination: { 1478 el: '.htmove-team-content-slider-<?php echo $id; ?> .swiper-pagination',1478 el: '.htmove-team-content-slider-<?php echo esc_attr($id); ?> .swiper-pagination', 1479 1479 clickable: true, 1480 1480 renderBullet: function(index, className) { -
move-addons/tags/1.3.2/includes/widgets/user-login/widget.php
r3048903 r3088859 1144 1144 var login_button_id = '#login_form_submit_<?php echo esc_attr( $id ); ?>'; 1145 1145 var button_text = '<?php echo esc_html( $settings['login_button_text'] ); ?>'; 1146 var redirect = '<?php echo $settings['redirect_page']; ?>';1147 var refresh = '<?php echo $settings['refresh_page']; ?>';1146 var redirect = '<?php echo esc_attr($settings['redirect_page']); ?>'; 1147 var refresh = '<?php echo esc_attr($settings['refresh_page']); ?>'; 1148 1148 1149 1149 $( login_button_id ).on('click', function(){ -
move-addons/tags/1.3.2/move-addons.php
r3063409 r3088859 6 6 * Author: moveaddons 7 7 * Author URI: https://moveaddons.com 8 * Version: 1.3. 18 * Version: 1.3.2 9 9 * License: GPL2 10 10 * License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 17 17 if( ! defined( 'ABSPATH' ) ) exit(); // Exit if accessed directly 18 18 19 define( 'MOVE_ADDONS_VERSION', '1.3. 1' );19 define( 'MOVE_ADDONS_VERSION', '1.3.2' ); 20 20 define( 'MOVE_ADDONS_FILE', __FILE__ ); 21 21 define( 'MOVE_ADDONS_PL_PATH', plugin_dir_path( MOVE_ADDONS_FILE ) ); -
move-addons/trunk/includes/widgets/data-table/widget.php
r3048903 r3088859 802 802 ?> 803 803 <div <?php echo $this->get_render_attribute_string( 'area_attr' ); ?> > 804 <table class="<?php if( $settings['show_datatable_sorting'] == 'yes' ){ echo 'htmove-datatable-'. $id; } ?>">804 <table class="<?php if( $settings['show_datatable_sorting'] == 'yes' ){ echo 'htmove-datatable-'.esc_attr($id); } ?>"> 805 805 <?php if( is_array( $headeres ) ): ?> 806 806 <thead> … … 822 822 if( $table_tr[$i]['id'] == $table_td[$j]['row_id'] ): 823 823 ?> 824 <td<?php echo $table_td[$j]['colspan'] > 1 ? ' colspan="'.$table_td[$j]['colspan'].'"' : ''; ?>><?php echo esc_html($table_td[$j]['title']); ?></td>824 <td<?php echo $table_td[$j]['colspan'] > 1 ? ' colspan="'.$table_td[$j]['colspan'].'"' : ''; ?>><?php echo wp_kses_post($table_td[$j]['title']); ?></td> 825 825 <?php endif; endfor; ?> 826 826 </tr> … … 834 834 ;jQuery(document).ready(function($) { 835 835 'use strict'; 836 $('.htmove-datatable-<?php echo $id; ?>').DataTable({836 $('.htmove-datatable-<?php echo esc_attr($id); ?>').DataTable({ 837 837 paging: <?php echo $settings['show_datatable_paging'] == 'yes' ? 'true' : 'false'; ?>, 838 838 searching: <?php echo $settings['show_datatable_searching'] == 'yes' ? 'true' : 'false'; ?>, -
move-addons/trunk/includes/widgets/event-calendar/widget.php
r3048903 r3088859 930 930 ;jQuery(document).ready(function($) { 931 931 'use strict'; 932 var EventCalendarEl = document.getElementById('htmove-event-calendar-<?php echo $id; ?>');932 var EventCalendarEl = document.getElementById('htmove-event-calendar-<?php echo esc_attr($id); ?>'); 933 933 934 934 var defaultview = '<?php echo $settings['default_view']; ?>', -
move-addons/trunk/includes/widgets/mailchimp/widget.php
r3048903 r3088859 726 726 <div class="htmove-message" style="display: none;"></div> 727 727 728 <form id="htmove-mailchimp-<?php echo $id; ?>" method="post">728 <form id="htmove-mailchimp-<?php echo esc_attr($id); ?>" method="post"> 729 729 730 730 <div class="htmove-form-group"> -
move-addons/trunk/includes/widgets/shop-product-grid/widget.php
r3048903 r3088859 1201 1201 ?> 1202 1202 <li class="<?php echo implode( " ", $item_class ); ?>"> 1203 <div class="htmove-product htmove-product-<?php echo $settings['layout']; ?>">1203 <div class="htmove-product htmove-product-<?php echo esc_attr($settings['layout']); ?>"> 1204 1204 <div class="htmove-product-thumbnail"> 1205 1205 -
move-addons/trunk/includes/widgets/team-member/widget.php
r3048903 r3088859 1462 1462 var thumbimg = <?php echo json_encode( $thumbimg ); ?>; 1463 1463 1464 var teamFourImage = new Swiper('.htmove-team-image-slider-<?php echo $id; ?> .swiper-container', {1464 var teamFourImage = new Swiper('.htmove-team-image-slider-<?php echo esc_attr($id); ?> .swiper-container', { 1465 1465 loop: true, 1466 1466 spaceBetween: 0, … … 1470 1470 allowTouchMove: false, 1471 1471 }); 1472 var teamFourContent = new Swiper('.htmove-team-content-slider-<?php echo $id; ?> .swiper-container', {1472 var teamFourContent = new Swiper('.htmove-team-content-slider-<?php echo esc_attr($id); ?> .swiper-container', { 1473 1473 loop: true, 1474 1474 spaceBetween: 0, … … 1476 1476 loopedSlides: 2, 1477 1477 pagination: { 1478 el: '.htmove-team-content-slider-<?php echo $id; ?> .swiper-pagination',1478 el: '.htmove-team-content-slider-<?php echo esc_attr($id); ?> .swiper-pagination', 1479 1479 clickable: true, 1480 1480 renderBullet: function(index, className) { -
move-addons/trunk/includes/widgets/user-login/widget.php
r3048903 r3088859 1144 1144 var login_button_id = '#login_form_submit_<?php echo esc_attr( $id ); ?>'; 1145 1145 var button_text = '<?php echo esc_html( $settings['login_button_text'] ); ?>'; 1146 var redirect = '<?php echo $settings['redirect_page']; ?>';1147 var refresh = '<?php echo $settings['refresh_page']; ?>';1146 var redirect = '<?php echo esc_attr($settings['redirect_page']); ?>'; 1147 var refresh = '<?php echo esc_attr($settings['refresh_page']); ?>'; 1148 1148 1149 1149 $( login_button_id ).on('click', function(){ -
move-addons/trunk/move-addons.php
r3063409 r3088859 6 6 * Author: moveaddons 7 7 * Author URI: https://moveaddons.com 8 * Version: 1.3. 18 * Version: 1.3.2 9 9 * License: GPL2 10 10 * License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 17 17 if( ! defined( 'ABSPATH' ) ) exit(); // Exit if accessed directly 18 18 19 define( 'MOVE_ADDONS_VERSION', '1.3. 1' );19 define( 'MOVE_ADDONS_VERSION', '1.3.2' ); 20 20 define( 'MOVE_ADDONS_FILE', __FILE__ ); 21 21 define( 'MOVE_ADDONS_PL_PATH', plugin_dir_path( MOVE_ADDONS_FILE ) );
Note: See TracChangeset
for help on using the changeset viewer.