Plugin Directory

Changeset 3070155

Timestamp:
04/14/2024 08:34:25 AM (3 months ago)
Author:
averta
Message:

Committing 2.15.6 to trunk

Location:
auxin-elements/trunk
Files:
12 edited

Legend:

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

    r3024404 r3070155  
    44License: GPLv3
    55License URI: http://www.gnu.org/licenses/gpl.html
    6 Tags: phlox, gallery, elementor, auxin, averta, auxin-elements, framework, widget, fullwidth, masonry, timeline, parallax
     6Tags: phlox,
    77Requires PHP: 5.4
    88Requires at least: 4.6
    9 Tested up to: 6.4.2
    10 Stable tag: 2.15.5
     9Tested up to: 6.
     10Stable tag: 2.15.
    1111License: GPLv3
    1212License URI: http://www.gnu.org/licenses/gpl.html
  • auxin-elements/trunk/admin/assets/js/plugins.js

    r3024404 r3070155  
    1 /*! Phlox Core Plugin - v2.15.4 (2024-01)
     1/*! Phlox Core Plugin - v2.15.)
    22 *  All required javascript plugins for admin
    33 *  http://phlox.pro/
  • auxin-elements/trunk/auxin-elements.php

    r3024404 r3070155  
    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.5
     15 * Version:           2.15.
    1616 * Author:            averta
    1717 * Author URI:        http://averta.net
     
    2020 * License URI:       https://www.gnu.org/licenses/gpl-2.0.html
    2121 * Domain Path:       /languages
    22  * Tested up to:      6.4.2
     22 * Tested up to:      6.
    2323 */
    2424
  • auxin-elements/trunk/includes/classes/class-auxin-demo-importer.php

    r3024404 r3070155  
    13061306            $url_filenames = basename( parse_url( $import_url['url'], PHP_URL_PATH ) );
    13071307
    1308             if ( ! isset( $tmpname[$import_url['url']] ) ) {
     1308            if ( ! isset( $tmpname[$import_url['url']] ) ) {
    13091309                $tmpname[$import_url['url']] = wp_tempnam( $url_filenames );
    1310             }
     1310            } else {
     1311                $tmpname[$import_url['url']] = '';
     1312            }
    13111313
    13121314            $requests[$import_url['url']] = array( 'url' => $import_url['url'], 'options' => array( 'timeout' => 300, 'stream' => true, 'filename' => $tmpname[$import_url['url']] ) );
     
    13241326    public function download( array $requests ) {
    13251327
    1326         if( ! empty( $requests ) ) {
     1328        if( ! empty( $requests ) ) {
    13271329            // Split requests
    13281330            return Requests::request_multiple( $requests );
     1331
     1332
     1333
     1334
     1335
     1336
     1337
     1338
     1339
     1340
     1341
     1342
     1343
     1344
     1345
     1346
     1347
     1348
     1349
     1350
     1351
     1352
     1353
     1354
     1355
    13291356        }
    13301357
  • auxin-elements/trunk/includes/define.php

    r3024404 r3070155  
    1313
    1414
    15 define( 'AUXELS_VERSION'        , '2.15.5' );
     15define( 'AUXELS_VERSION'        , '2.15.' );
    1616
    1717define( 'AUXELS_SLUG'           , 'auxin-elements' );
  • auxin-elements/trunk/includes/elementor/widgets/accordion.php

    r2741122 r3070155  
    741741    protected function content_template() {
    742742        ?>
    743         <# var typeClass = settings.type == 'true' ? 'aux-type-toggle' : 'aux-type-accordion'; #>
     743        <#
     744        var typeClass = settings.type == 'true' ? 'aux-type-toggle' : 'aux-type-accordion';
     745        view.addRenderAttribute(
     746            'widgetInner',
     747            {
     748                'class': [ 'widget-inner', typeClass ],
     749                'data-toggle': settings.type
     750            }
     751        );
     752        #>
    744753        <section class="widget-container aux-widget-accordion widget-toggle">
    745             <div class="widget-inner {{{ typeClass }}}" data-toggle="{{{ settings.type }}}">
     754            <div >
    746755            <#
    747756            if ( settings.tab_items ) {
  • auxin-elements/trunk/includes/elementor/widgets/icon.php

    r2760549 r3070155  
    445445                <# if ( iconHTML && iconHTML.rendered && settings.aux_new_icon.value !== '' ) { #>
    446446                    {{{ iconHTML.value }}}
    447                 <# } else if ( settings.icon !== '' ) { #>
    448                     <i class="{{ settings.icon }}" aria-hidden="true"></i>
     447                <#
     448                } else if ( settings.icon !== '' ) {
     449                    view.addRenderAttribute(
     450                        'iconClass',
     451                        {
     452                            'class': [ settings.icon ],
     453                        }
     454                    );
     455                #>
     456                    <i {{{ view.getRenderAttributeString('iconClass') }}} aria-hidden="true"></i>
    449457                <# } #>
    450458            </{{{ iconTag }}}>
  • auxin-elements/trunk/includes/elementor/widgets/tabs.php

    r2758590 r3070155  
    564564        ?>
    565565        <section class="widget-container aux-widget-tabs">
    566             <div class="widget-container widget-tabs {{{ settings.style }}}">
     566            <#
     567            view.addRenderAttribute(
     568                'widgetTabs',
     569                {
     570                    'class': [ 'widget-container', 'widget-tabs', settings.style ],
     571                }
     572            );
     573            #>
     574            <div {{{ view.getRenderAttributeString('widgetTabs') }}}>
    567575                <div class="widget-inner">
    568576                    <ul class="tabs">
  • auxin-elements/trunk/includes/general-hooks.php

    r3024404 r3070155  
    23772377    // Use taxonomy template option if is category or tag archive page
    23782378
    2379     if( is_category() || is_tag() ){
     2379    if( is_category() || is_tag() ){
    23802380        $author_or_readmore      = auxin_get_option( 'display_post_taxonomy_author_readmore', 'readmore');
    23812381        $post_loadmore_type      = auxin_get_option( 'post_taxonomy_loadmore_type', '' );
  • auxin-elements/trunk/languages/auxin-elements-fa_IR.po

    r3024404 r3070155  
    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-01-20 09:18:10+00:00\n"
     5"POT-Creation-Date: 2024-0+00:00\n"
    66"PO-Revision-Date: 2016-11-09 12:50+0330\n"
    77"Last-Translator: \n"
     
    19581958
    19591959#: includes/classes/class-auxin-demo-importer.php:294
    1960 #: includes/classes/class-auxin-demo-importer.php:1346
     1960#: includes/classes/class-auxin-demo-importer.php:13
    19611961msgid "Importing Users"
    19621962msgstr ""
     
    19891989msgstr ""
    19901990
    1991 #: includes/classes/class-auxin-demo-importer.php:1423
     1991#: includes/classes/class-auxin-demo-importer.php:14
    19921992msgid "Preparing Site ..."
    19931993msgstr ""
    19941994
    1995 #: includes/classes/class-auxin-demo-importer.php:1467
     1995#: includes/classes/class-auxin-demo-importer.php:14
    19961996msgid "All steps are successful"
    19971997msgstr ""
  • auxin-elements/trunk/languages/auxin-elements.pot

    r3024404 r3070155  
    22msgid ""
    33msgstr ""
    4 "Project-Id-Version: Phlox Core Elements 2.15.5\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-01-20 09:18:10+00:00\n"
     6"POT-Creation-Date: 2024-0+00:00\n"
    77"MIME-Version: 1.0\n"
    88"Content-Type: text/plain; charset=utf-8\n"
     
    18341834
    18351835#: includes/classes/class-auxin-demo-importer.php:294
    1836 #: includes/classes/class-auxin-demo-importer.php:1346
     1836#: includes/classes/class-auxin-demo-importer.php:13
    18371837msgid "Importing Users"
    18381838msgstr ""
     
    18641864msgstr ""
    18651865
    1866 #: includes/classes/class-auxin-demo-importer.php:1423
     1866#: includes/classes/class-auxin-demo-importer.php:14
    18671867msgid "Preparing Site ..."
    18681868msgstr ""
    18691869
    1870 #: includes/classes/class-auxin-demo-importer.php:1467
     1870#: includes/classes/class-auxin-demo-importer.php:14
    18711871msgid "All steps are successful"
    18721872msgstr ""
  • auxin-elements/trunk/public/assets/js/plugins.js

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