Plugin Directory

Changeset 3074455

Timestamp:
04/21/2024 08:49:55 AM (3 months ago)
Author:
averta
Message:

Committing 2.15.8 to trunk

Location:
auxin-elements/trunk
Files:
16 edited

Legend:

Unmodified
Added
Removed
  • auxin-elements/trunk/README.txt

    r3072185 r3074455  
    88Requires at least: 4.6
    99Tested up to: 6.3.0
    10 Stable tag: 2.15.7
     10Stable tag: 2.15.
    1111License: GPLv3
    1212License URI: http://www.gnu.org/licenses/gpl.html
  • auxin-elements/trunk/admin/assets/js/plugins.js

    r3072185 r3074455  
    1 /*! Phlox Core Plugin - v2.15.7 (2024-04)
     1/*! Phlox Core Plugin - v2.15. (2024-04)
    22 *  All required javascript plugins for admin
    33 *  http://phlox.pro/
  • auxin-elements/trunk/admin/includes/admin-ajax.php

    r2912150 r3074455  
    462462 */
    463463function auxin_template_control_importer() {
    464     wp_send_json( auxin_template_importer( sanitize_text_field( $_POST['id'] ), sanitize_text_field( $_POST['template_type'] ), 'update_menu' ) );
     464    $template_type = sanitize_text_field( $_POST['template_type'] );
     465    if ( empty( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'customizer-template-library-' .  $template_type ) ) {
     466        wp_send_json_error([
     467            'message' => __( 'Sorry. You don\'t have sufficient permission to import a template!', 'auxin-elements')
     468        ]);
     469    }
     470
     471    wp_send_json( auxin_template_importer( sanitize_text_field( $_POST['id'] ), $template_type, 'update_menu' ) );
    465472}
    466473add_action( 'wp_ajax_auxin_template_control_importer', 'auxin_template_control_importer' );
  • auxin-elements/trunk/admin/includes/admin-the-functions.php

    r2754853 r3074455  
    173173    function auxin_template_importer( $template_ID = '', $template_type = '', $action = '' ) {
    174174
     175
     176
     177
     178
     179
     180
     181
     182
     183
    175184        $template_ID = sanitize_text_field( trim( $template_ID ) );
    176185        $template_type = sanitize_text_field( trim( $template_type ) );
  • auxin-elements/trunk/admin/includes/metaboxes/metabox-fields-general-advanced.php

    r3024404 r3074455  
    4747            'type'          => 'code',
    4848            'mode'          => 'javascript',
    49             'default'       => ''
     49            'default'       => '',
     50            'required_capability' => 'manage_options'
    5051        ),
    5152
  • auxin-elements/trunk/auxin-elements.php

    r3072185 r3074455  
    1313 * Plugin URI:        https://wordpress.org/plugins/auxin-elements/
    1414 * Description:       Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
    15  * Version:           2.15.7
    16  * Author:            averta
     15 * Version:           2.15.
     16 * Author:            verta
    1717 * Author URI:        http://averta.net
    1818 * Text Domain:       auxin-elements
  • auxin-elements/trunk/includes/define.php

    r3072185 r3074455  
    1313
    1414
    15 define( 'AUXELS_VERSION'        , '2.15.7' );
     15define( 'AUXELS_VERSION'        , '2.15.' );
    1616
    1717define( 'AUXELS_SLUG'           , 'auxin-elements' );
  • auxin-elements/trunk/includes/elementor/widgets/heading-modern.php

    r2760549 r3074455  
    11771177                    printf( '<a %1$s><%2$s class="aux-modern-heading-primary">%3$s</%2$s></a>',
    11781178                        $this->get_render_attribute_string( 'link-primary' ),
    1179                         esc_attr( $settings['title_tag'] ),
     1179                        ( $settings['title_tag'] ),
    11801180                        wp_kses_post( $settings['title'] )
    11811181                    );
     
    11831183                } else {
    11841184                    printf( '<%1$s class="aux-modern-heading-primary">%2$s</%1$s>',
    1185                         esc_attr( $settings['title_tag'] ),
     1185                        ( $settings['title_tag'] ),
    11861186                        wp_kses_post( $settings['title'] )
    11871187                    );
     
    12141214                        printf( '<a %1$s><%2$s class="aux-modern-heading-secondary">%3$s%4$s%5$s</%2$s></a>',
    12151215                            $this->get_render_attribute_string( 'link-secondary' ),
    1216                             esc_attr( $settings['title_tag_secondary'] ),
     1216                            ( $settings['title_tag_secondary'] ),
    12171217                            wp_kses_post( $before_heading ),
    12181218                            wp_kses_post( $highlight_heading ),
     
    12211221                    } else {
    12221222                        printf( '<%1$s class="aux-modern-heading-secondary">%2$s%3$s%4$s</%1$s>',
    1223                             esc_attr( $settings['title_tag_secondary'] ),
     1223                            ( $settings['title_tag_secondary'] ),
    12241224                            wp_kses_post( $before_heading ),
    12251225                            wp_kses_post( $highlight_heading ),
  • auxin-elements/trunk/includes/elementor/widgets/theme-elements/site-title.php

    r2760549 r3074455  
    509509    }
    510510
    511     echo $settings['title_before'] !== '' ? sprintf('<%1$s class ="aux-site-title-before-heading">%2$s</%1$s>', esc_attr( $settings['title_before_tag'] ), esc_html( $settings['title_before'] ) ) : '';
    512     echo sprintf('<%1$s class="aux-site-title-heading">%2$s</%1$s>', esc_attr( $settings['title_tag'] ), wp_kses_post( $site_title ) );
    513     echo $settings['title_after'] !== '' ? sprintf('<%1$s class ="aux-site-title-after-heading">%2$s</%1$s>', esc_attr( $settings['title_after_tag'] ), esc_html( $settings['title_after'] ) ) : '';
     511    echo $settings['title_before'] !== '' ? sprintf('<%1$s class ="aux-site-title-before-heading">%2$s</%1$s>', ( $settings['title_before_tag'] ), esc_html( $settings['title_before'] ) ) : '';
     512    echo sprintf('<%1$s class="aux-site-title-heading">%2$s</%1$s>', ( $settings['title_tag'] ), wp_kses_post( $site_title ) );
     513    echo $settings['title_after'] !== '' ? sprintf('<%1$s class ="aux-site-title-after-heading">%2$s</%1$s>', ( $settings['title_after_tag'] ), esc_html( $settings['title_after'] ) ) : '';
    514514
    515515    echo '</div>';
  • auxin-elements/trunk/includes/elements/accordion.php

    r3024404 r3074455  
    180180            $title_tag = strtolower( $title_tag ) == 'script' ? 'h6' : $title_tag;
    181181            $output .= sprintf( '<%1$s %2$s>%3$s</%1$s>',
    182                 $title_tag,
     182                ,
    183183                auxin_make_html_attributes( $header_attrs ),
    184184                $value['accordion_label']
  • auxin-elements/trunk/includes/elements/gmap.php

    r3024404 r3074455  
    265265    } else {
    266266        $style = rawurldecode( base64_decode( strip_tags( $style ) ) );
     267
    267268    }
    268269
  • auxin-elements/trunk/includes/general-functions.php

    r3024404 r3074455  
    25802580    return wp_json_encode( $json_array );
    25812581}
     2582
     2583
     2584
     2585
     2586
     2587
     2588
     2589
     2590
     2591
     2592
  • auxin-elements/trunk/includes/general-shortcodes.php

    r3012305 r3074455  
    308308?>
    309309
    310                     <article class="aux-block <?php echo "date-type-".$date_type." "; echo ($thumb_mode != "top")? $thumb_mode : "thumb_top" ; ?>">
     310                    <article class="aux-block <?php echo "date-type-". : "thumb_top" ; ?>">
    311311                       <figure>
    312312                           <?php if ( $has_attach  && ($view_thumb == "yes") ) {
  • auxin-elements/trunk/languages/auxin-elements-fa_IR.po

    r3072185 r3074455  
    33"Project-Id-Version: Auxin Essential Elements\n"
    44"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
    5 "POT-Creation-Date: 2024-04-17 08:32:11+00:00\n"
     5"POT-Creation-Date: 2024-04-+00:00\n"
    66"PO-Revision-Date: 2016-11-09 12:50+0330\n"
    77"Last-Translator: \n"
     
    120120msgstr ""
    121121
     122
     123
     124
     125
    122126#: admin/includes/admin-hooks.php:52
    123127#: admin/includes/classes/class-auxin-notices.php:222
     
    248252msgstr ""
    249253
    250 #: admin/includes/admin-the-functions.php:182
     254#: admin/includes/admin-the-functions.php:1
    251255msgid "Template ID or type is required."
    252256msgstr ""
    253257
    254 #: admin/includes/admin-the-functions.php:195
     258#: admin/includes/admin-the-functions.php:
    255259msgid "An error occurred while updating templates library."
    256260msgstr ""
    257261
    258 #: admin/includes/admin-the-functions.php:214
     262#: admin/includes/admin-the-functions.php:2
    259263msgid "Template Not Found."
    260264msgstr ""
    261265
    262 #: admin/includes/admin-the-functions.php:230
     266#: admin/includes/admin-the-functions.php:23
    263267msgid "Template is already imported."
    264268msgstr ""
    265269
    266 #: admin/includes/admin-the-functions.php:246
     270#: admin/includes/admin-the-functions.php:2
    267271msgid "Connection error, please check your connection."
    268272msgstr ""
    269273
    270 #: admin/includes/admin-the-functions.php:263
     274#: admin/includes/admin-the-functions.php:2
    271275msgid "Template ID must be numeric or valid filepath."
    272276msgstr ""
    273277
    274 #: admin/includes/admin-the-functions.php:323
     278#: admin/includes/admin-the-functions.php:3
    275279msgid "Template Imported Successfully"
    276280msgstr ""
    277281
    278 #: admin/includes/admin-the-functions.php:335
     282#: admin/includes/admin-the-functions.php:3
    279283msgid "Error while saving the template."
    280284msgstr ""
     
    462466"تنظیمات استفاده کنید."
    463467
    464 #: admin/includes/metaboxes/metabox-fields-general-advanced.php:53
     468#: admin/includes/metaboxes/metabox-fields-general-advanced.php:5
    465469msgid "Extra Google Font1"
    466470msgstr ""
    467471
    468 #: admin/includes/metaboxes/metabox-fields-general-advanced.php:54
    469 #: admin/includes/metaboxes/metabox-fields-general-advanced.php:62
     472#: admin/includes/metaboxes/metabox-fields-general-advanced.php:5
     473#: admin/includes/metaboxes/metabox-fields-general-advanced.php:6
    470474#, fuzzy
    471475msgid "Load an extra Google font for this page."
    472476msgstr "در صفحه جدید یا در همین صفحه باز شود."
    473477
    474 #: admin/includes/metaboxes/metabox-fields-general-advanced.php:61
     478#: admin/includes/metaboxes/metabox-fields-general-advanced.php:6
    475479msgid "Extra Google Font2"
    476480msgstr ""
     
    1286512869
    1286612870#. Author of the plugin/theme
    12867 msgid "averta"
     12871#, fuzzy
     12872msgid "By Averta"
    1286812873msgstr "اورتا"
    1286912874
  • auxin-elements/trunk/languages/auxin-elements.pot

    r3072185 r3074455  
    22msgid ""
    33msgstr ""
    4 "Project-Id-Version: Phlox Core Elements 2.15.7\n"
     4"Project-Id-Version: Phlox Core Elements 2.15.\n"
    55"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
    6 "POT-Creation-Date: 2024-04-17 08:32:11+00:00\n"
     6"POT-Creation-Date: 2024-04-+00:00\n"
    77"MIME-Version: 1.0\n"
    88"Content-Type: text/plain; charset=utf-8\n"
     
    121121msgstr ""
    122122
     123
     124
     125
     126
    123127#: admin/includes/admin-hooks.php:52
    124128#: admin/includes/classes/class-auxin-notices.php:222
     
    235239msgstr ""
    236240
    237 #: admin/includes/admin-the-functions.php:182
     241#: admin/includes/admin-the-functions.php:1
    238242msgid "Template ID or type is required."
    239243msgstr ""
    240244
    241 #: admin/includes/admin-the-functions.php:195
     245#: admin/includes/admin-the-functions.php:
    242246msgid "An error occurred while updating templates library."
    243247msgstr ""
    244248
    245 #: admin/includes/admin-the-functions.php:214
     249#: admin/includes/admin-the-functions.php:2
    246250msgid "Template Not Found."
    247251msgstr ""
    248252
    249 #: admin/includes/admin-the-functions.php:230
     253#: admin/includes/admin-the-functions.php:23
    250254msgid "Template is already imported."
    251255msgstr ""
    252256
    253 #: admin/includes/admin-the-functions.php:246
     257#: admin/includes/admin-the-functions.php:2
    254258msgid "Connection error, please check your connection."
    255259msgstr ""
    256260
    257 #: admin/includes/admin-the-functions.php:263
     261#: admin/includes/admin-the-functions.php:2
    258262msgid "Template ID must be numeric or valid filepath."
    259263msgstr ""
    260264
    261 #: admin/includes/admin-the-functions.php:323
     265#: admin/includes/admin-the-functions.php:3
    262266msgid "Template Imported Successfully"
    263267msgstr ""
    264268
    265 #: admin/includes/admin-the-functions.php:335
     269#: admin/includes/admin-the-functions.php:3
    266270msgid "Error while saving the template."
    267271msgstr ""
     
    432436msgstr ""
    433437
    434 #: admin/includes/metaboxes/metabox-fields-general-advanced.php:53
     438#: admin/includes/metaboxes/metabox-fields-general-advanced.php:5
    435439msgid "Extra Google Font1"
    436440msgstr ""
    437441
    438 #: admin/includes/metaboxes/metabox-fields-general-advanced.php:54
     442#: admin/includes/metaboxes/metabox-fields-general-advanced.php:55
     443#: admin/includes/metaboxes/metabox-fields-general-advanced.php:63
     444msgid "Load an extra Google font for this page."
     445msgstr ""
     446
    439447#: admin/includes/metaboxes/metabox-fields-general-advanced.php:62
    440 msgid "Load an extra Google font for this page."
    441 msgstr ""
    442 
    443 #: admin/includes/metaboxes/metabox-fields-general-advanced.php:61
    444448msgid "Extra Google Font2"
    445449msgstr ""
     
    1203012034
    1203112035#. Author of the plugin/theme
    12032 msgid "averta"
     12036msgid "verta"
    1203312037msgstr ""
    1203412038
  • auxin-elements/trunk/public/assets/js/plugins.js

    r3072185 r3074455  
    1 /*! Phlox Core Plugin - v2.15.7 (2024-04)
     1/*! Phlox Core Plugin - v2.15. (2024-04)
    22 *  All required plugins
    33 *  http://phlox.pro/
Note: See TracChangeset for help on using the changeset viewer.