Plugin Directory

Changeset 3235681


Ignore:
Timestamp:
02/05/2025 09:01:10 PM (14 months ago)
Author:
artabr
Message:

Update to version 3.1.4 from GitHub

Location:
art-woocommerce-order-one-click
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • art-woocommerce-order-one-click/tags/3.1.4/art-woo-order-one-click.php

    r3235619 r3235681  
    66 * Domain Path: /languages
    77 * Description: Plugin for WooCommerce. It includes the catalog mode in the store (there are no prices and the Buy button) and can turn on the Buy/Order button in one click. WooCommerce and Contact Form 7 are required for proper operation.
    8  * Version: 3.1.3
     8 * Version: 3.1.4
    99 * Author: Artem Abramovich
    1010 * Author URI: https://wpruse.ru/
  • art-woocommerce-order-one-click/tags/3.1.4/classes/Prepare/Popup.php

    r3235619 r3235681  
    191191        $negative        = $price < 0;
    192192        $formatted_price = ( $negative ? '-' : '' ) . sprintf(
    193                 $args['price_format'],
    194                 '<span class="woocommerce-Price-currencySymbol">' . get_woocommerce_currency_symbol( $args['currency'] ) . '</span>',
    195                 '<span class="woocommerce-Price-currencyValue">' . $price . '</span>'
    196             );
     193            $args['price_format'],
     194            '<span class="woocommerce-Price-currencySymbol">' . get_woocommerce_currency_symbol( $args['currency'] ) . '</span>',
     195            '<span class="woocommerce-Price-currencyValue">' . $price . '</span>'
     196        );
    197197
    198198        return '<span class="woocommerce-Price-amount amount"><bdi>' . $formatted_price . '</bdi></span>';
  • art-woocommerce-order-one-click/tags/3.1.4/includes/create-cf7-field.php

    r3232179 r3235681  
    5252    $atts['name']  = $tag->name;
    5353    $atts          = wpcf7_format_atts( $atts );
    54     $html          = sprintf( '<span class="wpcf7-form-control-wrap %1$s"><textarea %2$s></textarea></span>', sanitize_html_class( $tag->name ), $atts );
    5554
    56     $html .= sprintf( '<input type="hidden" name="%1$s" value="" class="awooc-hidden-product-id">', 'awooc_product_id' );
    57     $html .= sprintf( '<input type="hidden" name="%1$s" value="" class="awooc-hidden-product-qty">', 'awooc_product_qty' );
    58 
    59     return $html;
     55    return sprintf( '<span class="wpcf7-form-control-wrap %1$s"><textarea %2$s></textarea></span>', sanitize_html_class( $tag->name ), $atts );
    6056}
    6157
     
    130126                                name="name"
    131127                                class="tg-name oneline"
    132                                 id="tag-generator-panel-awooc_hidden-name"/></td>
     128                                id="tag-generator-panel-awooc_hidden-name"
     129                            /></td>
    133130                    </tr>
    134131                </tbody>
     
    145142                class="tag code"
    146143                readonly="readonly"
    147                 onfocus="this.select()"/>
     144                onfocus="this.select()"
     145            />
    148146        </label>
    149147
     
    152150                type="button"
    153151                class="button button-primary insert-tag"
    154                 value="<?php echo esc_attr( __( 'Insert Tag', 'contact-form-7' ) ); ?>"/>
     152                value="<?php echo esc_attr( __( 'Insert Tag', 'contact-form-7' ) ); ?>"
     153            />
    155154        </div>
    156155
    157         <br class="clear"/>
     156        <br class="clear" />
    158157
    159158        <p class="description mail-tag"><label
    160                 for="tag-generator-panel-mailtag">
     159                for="tag-generator-panel-mailtag"
     160            >
    161161                <?php
    162162
     
    174174                    class="mail-tag code hidden"
    175175                    readonly="readonly"
    176                     id="tag-generator-panel-mailtag"/></label></p>
     176                    id="tag-generator-panel-mailtag"
     177                /></label></p>
    177178    </div>
    178179    <?php
  • art-woocommerce-order-one-click/tags/3.1.4/readme.txt

    r3235619 r3235681  
    55Requires at least: 5.5
    66Tested up to: 6.7
    7 Stable tag: 3.1.3
     7Stable tag: 3.1.4
    88Requires PHP: 7.4
    99License: GPLv2 or later
  • art-woocommerce-order-one-click/tags/3.1.4/vendor/composer/installed.php

    r3235619 r3235681  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '4b1a0af0f10598a34657d75459fb512dfb2107ae',
     6        'reference' => 'ba82ddb0c6f1beaf13079b8eeb37cc31aefdf55b',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-master',
    1515            'version' => 'dev-master',
    16             'reference' => '4b1a0af0f10598a34657d75459fb512dfb2107ae',
     16            'reference' => 'ba82ddb0c6f1beaf13079b8eeb37cc31aefdf55b',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
  • art-woocommerce-order-one-click/trunk/art-woo-order-one-click.php

    r3235619 r3235681  
    66 * Domain Path: /languages
    77 * Description: Plugin for WooCommerce. It includes the catalog mode in the store (there are no prices and the Buy button) and can turn on the Buy/Order button in one click. WooCommerce and Contact Form 7 are required for proper operation.
    8  * Version: 3.1.3
     8 * Version: 3.1.4
    99 * Author: Artem Abramovich
    1010 * Author URI: https://wpruse.ru/
  • art-woocommerce-order-one-click/trunk/classes/Prepare/Popup.php

    r3235619 r3235681  
    191191        $negative        = $price < 0;
    192192        $formatted_price = ( $negative ? '-' : '' ) . sprintf(
    193                 $args['price_format'],
    194                 '<span class="woocommerce-Price-currencySymbol">' . get_woocommerce_currency_symbol( $args['currency'] ) . '</span>',
    195                 '<span class="woocommerce-Price-currencyValue">' . $price . '</span>'
    196             );
     193            $args['price_format'],
     194            '<span class="woocommerce-Price-currencySymbol">' . get_woocommerce_currency_symbol( $args['currency'] ) . '</span>',
     195            '<span class="woocommerce-Price-currencyValue">' . $price . '</span>'
     196        );
    197197
    198198        return '<span class="woocommerce-Price-amount amount"><bdi>' . $formatted_price . '</bdi></span>';
  • art-woocommerce-order-one-click/trunk/includes/create-cf7-field.php

    r3232179 r3235681  
    5252    $atts['name']  = $tag->name;
    5353    $atts          = wpcf7_format_atts( $atts );
    54     $html          = sprintf( '<span class="wpcf7-form-control-wrap %1$s"><textarea %2$s></textarea></span>', sanitize_html_class( $tag->name ), $atts );
    5554
    56     $html .= sprintf( '<input type="hidden" name="%1$s" value="" class="awooc-hidden-product-id">', 'awooc_product_id' );
    57     $html .= sprintf( '<input type="hidden" name="%1$s" value="" class="awooc-hidden-product-qty">', 'awooc_product_qty' );
    58 
    59     return $html;
     55    return sprintf( '<span class="wpcf7-form-control-wrap %1$s"><textarea %2$s></textarea></span>', sanitize_html_class( $tag->name ), $atts );
    6056}
    6157
     
    130126                                name="name"
    131127                                class="tg-name oneline"
    132                                 id="tag-generator-panel-awooc_hidden-name"/></td>
     128                                id="tag-generator-panel-awooc_hidden-name"
     129                            /></td>
    133130                    </tr>
    134131                </tbody>
     
    145142                class="tag code"
    146143                readonly="readonly"
    147                 onfocus="this.select()"/>
     144                onfocus="this.select()"
     145            />
    148146        </label>
    149147
     
    152150                type="button"
    153151                class="button button-primary insert-tag"
    154                 value="<?php echo esc_attr( __( 'Insert Tag', 'contact-form-7' ) ); ?>"/>
     152                value="<?php echo esc_attr( __( 'Insert Tag', 'contact-form-7' ) ); ?>"
     153            />
    155154        </div>
    156155
    157         <br class="clear"/>
     156        <br class="clear" />
    158157
    159158        <p class="description mail-tag"><label
    160                 for="tag-generator-panel-mailtag">
     159                for="tag-generator-panel-mailtag"
     160            >
    161161                <?php
    162162
     
    174174                    class="mail-tag code hidden"
    175175                    readonly="readonly"
    176                     id="tag-generator-panel-mailtag"/></label></p>
     176                    id="tag-generator-panel-mailtag"
     177                /></label></p>
    177178    </div>
    178179    <?php
  • art-woocommerce-order-one-click/trunk/readme.txt

    r3235619 r3235681  
    55Requires at least: 5.5
    66Tested up to: 6.7
    7 Stable tag: 3.1.3
     7Stable tag: 3.1.4
    88Requires PHP: 7.4
    99License: GPLv2 or later
  • art-woocommerce-order-one-click/trunk/vendor/composer/installed.php

    r3235619 r3235681  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '4b1a0af0f10598a34657d75459fb512dfb2107ae',
     6        'reference' => 'ba82ddb0c6f1beaf13079b8eeb37cc31aefdf55b',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-master',
    1515            'version' => 'dev-master',
    16             'reference' => '4b1a0af0f10598a34657d75459fb512dfb2107ae',
     16            'reference' => 'ba82ddb0c6f1beaf13079b8eeb37cc31aefdf55b',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.