Plugin Directory

Changeset 3088859


Ignore:
Timestamp:
05/19/2024 05:04:54 AM (23 months ago)
Author:
moveaddons
Message:

Update to version 1.3.2 from GitHub

Location:
move-addons
Files:
14 edited
1 copied

Legend:

Unmodified
Added
Removed
  • move-addons/tags/1.3.2/includes/widgets/data-table/widget.php

    r3048903 r3088859  
    802802        ?>               
    803803            <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); } ?>">
    805805                    <?php if( is_array( $headeres ) ): ?>
    806806                        <thead>
     
    822822                                    if( $table_tr[$i]['id'] == $table_td[$j]['row_id'] ):
    823823                            ?>
    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>
    825825                            <?php endif; endfor; ?>
    826826                        </tr>
     
    834834                    ;jQuery(document).ready(function($) {
    835835                        'use strict';
    836                         $('.htmove-datatable-<?php echo $id; ?>').DataTable({
     836                        $('.htmove-datatable-<?php echo esc_attr($id); ?>').DataTable({
    837837                            paging: <?php echo $settings['show_datatable_paging'] == 'yes' ? 'true' : 'false'; ?>,
    838838                            searching: <?php echo $settings['show_datatable_searching'] == 'yes' ? 'true' : 'false'; ?>,
  • move-addons/tags/1.3.2/includes/widgets/event-calendar/widget.php

    r3048903 r3088859  
    930930            ;jQuery(document).ready(function($) {
    931931                '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); ?>');
    933933
    934934                var defaultview = '<?php echo $settings['default_view']; ?>',
  • move-addons/tags/1.3.2/includes/widgets/mailchimp/widget.php

    r3048903 r3088859  
    726726            <div class="htmove-message" style="display: none;"></div>
    727727
    728             <form id="htmove-mailchimp-<?php echo $id; ?>" method="post">
     728            <form id="htmove-mailchimp-<?php echo esc_attr($id); ?>" method="post">
    729729
    730730                <div class="htmove-form-group">
  • move-addons/tags/1.3.2/includes/widgets/shop-product-grid/widget.php

    r3048903 r3088859  
    12011201            ?>
    12021202                <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']); ?>">
    12041204                        <div class="htmove-product-thumbnail">
    12051205                           
  • move-addons/tags/1.3.2/includes/widgets/team-member/widget.php

    r3048903 r3088859  
    14621462                            var thumbimg = <?php echo json_encode( $thumbimg ); ?>;
    14631463
    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', {
    14651465                                loop: true,
    14661466                                spaceBetween: 0,
     
    14701470                                allowTouchMove: false,
    14711471                            });
    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', {
    14731473                                loop: true,
    14741474                                spaceBetween: 0,
     
    14761476                                loopedSlides: 2,
    14771477                                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',
    14791479                                    clickable: true,
    14801480                                    renderBullet: function(index, className) {
  • move-addons/tags/1.3.2/includes/widgets/user-login/widget.php

    r3048903 r3088859  
    11441144                var login_button_id = '#login_form_submit_<?php echo esc_attr( $id ); ?>';
    11451145                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']); ?>';
    11481148
    11491149                $( login_button_id ).on('click', function(){
  • move-addons/tags/1.3.2/move-addons.php

    r3063409 r3088859  
    66 * Author:      moveaddons
    77 * Author URI:  https://moveaddons.com
    8  * Version:     1.3.1
     8 * Version:     1.3.2
    99 * License:     GPL2
    1010 * License URI:  https://www.gnu.org/licenses/gpl-2.0.html
     
    1717if( ! defined( 'ABSPATH' ) ) exit(); // Exit if accessed directly
    1818
    19 define( 'MOVE_ADDONS_VERSION', '1.3.1' );
     19define( 'MOVE_ADDONS_VERSION', '1.3.2' );
    2020define( 'MOVE_ADDONS_FILE', __FILE__ );
    2121define( 'MOVE_ADDONS_PL_PATH', plugin_dir_path( MOVE_ADDONS_FILE ) );
  • move-addons/trunk/includes/widgets/data-table/widget.php

    r3048903 r3088859  
    802802        ?>               
    803803            <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); } ?>">
    805805                    <?php if( is_array( $headeres ) ): ?>
    806806                        <thead>
     
    822822                                    if( $table_tr[$i]['id'] == $table_td[$j]['row_id'] ):
    823823                            ?>
    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>
    825825                            <?php endif; endfor; ?>
    826826                        </tr>
     
    834834                    ;jQuery(document).ready(function($) {
    835835                        'use strict';
    836                         $('.htmove-datatable-<?php echo $id; ?>').DataTable({
     836                        $('.htmove-datatable-<?php echo esc_attr($id); ?>').DataTable({
    837837                            paging: <?php echo $settings['show_datatable_paging'] == 'yes' ? 'true' : 'false'; ?>,
    838838                            searching: <?php echo $settings['show_datatable_searching'] == 'yes' ? 'true' : 'false'; ?>,
  • move-addons/trunk/includes/widgets/event-calendar/widget.php

    r3048903 r3088859  
    930930            ;jQuery(document).ready(function($) {
    931931                '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); ?>');
    933933
    934934                var defaultview = '<?php echo $settings['default_view']; ?>',
  • move-addons/trunk/includes/widgets/mailchimp/widget.php

    r3048903 r3088859  
    726726            <div class="htmove-message" style="display: none;"></div>
    727727
    728             <form id="htmove-mailchimp-<?php echo $id; ?>" method="post">
     728            <form id="htmove-mailchimp-<?php echo esc_attr($id); ?>" method="post">
    729729
    730730                <div class="htmove-form-group">
  • move-addons/trunk/includes/widgets/shop-product-grid/widget.php

    r3048903 r3088859  
    12011201            ?>
    12021202                <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']); ?>">
    12041204                        <div class="htmove-product-thumbnail">
    12051205                           
  • move-addons/trunk/includes/widgets/team-member/widget.php

    r3048903 r3088859  
    14621462                            var thumbimg = <?php echo json_encode( $thumbimg ); ?>;
    14631463
    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', {
    14651465                                loop: true,
    14661466                                spaceBetween: 0,
     
    14701470                                allowTouchMove: false,
    14711471                            });
    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', {
    14731473                                loop: true,
    14741474                                spaceBetween: 0,
     
    14761476                                loopedSlides: 2,
    14771477                                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',
    14791479                                    clickable: true,
    14801480                                    renderBullet: function(index, className) {
  • move-addons/trunk/includes/widgets/user-login/widget.php

    r3048903 r3088859  
    11441144                var login_button_id = '#login_form_submit_<?php echo esc_attr( $id ); ?>';
    11451145                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']); ?>';
    11481148
    11491149                $( login_button_id ).on('click', function(){
  • move-addons/trunk/move-addons.php

    r3063409 r3088859  
    66 * Author:      moveaddons
    77 * Author URI:  https://moveaddons.com
    8  * Version:     1.3.1
     8 * Version:     1.3.2
    99 * License:     GPL2
    1010 * License URI:  https://www.gnu.org/licenses/gpl-2.0.html
     
    1717if( ! defined( 'ABSPATH' ) ) exit(); // Exit if accessed directly
    1818
    19 define( 'MOVE_ADDONS_VERSION', '1.3.1' );
     19define( 'MOVE_ADDONS_VERSION', '1.3.2' );
    2020define( 'MOVE_ADDONS_FILE', __FILE__ );
    2121define( 'MOVE_ADDONS_PL_PATH', plugin_dir_path( MOVE_ADDONS_FILE ) );
Note: See TracChangeset for help on using the changeset viewer.