Changeset 3307661
- Timestamp:
- 06/06/2025 09:28:42 PM (10 months ago)
- Location:
- clearsale-total
- Files:
-
- 5 edited
- 18 copied
-
tags/3.1.7 (copied) (copied from clearsale-total/trunk)
-
tags/3.1.7/CHANGELOG.md (copied) (copied from clearsale-total/trunk/CHANGELOG.md) (1 diff)
-
tags/3.1.7/README.txt (copied) (copied from clearsale-total/trunk/README.txt) (2 diffs)
-
tags/3.1.7/admin/class-clearsale-total-admin.php (copied) (copied from clearsale-total/trunk/admin/class-clearsale-total-admin.php)
-
tags/3.1.7/clearsale-total.php (copied) (copied from clearsale-total/trunk/clearsale-total.php) (2 diffs)
-
tags/3.1.7/includes/class-clearsale-total-activator.php (copied) (copied from clearsale-total/trunk/includes/class-clearsale-total-activator.php)
-
tags/3.1.7/includes/class-clearsale-total-ajax.php (copied) (copied from clearsale-total/trunk/includes/class-clearsale-total-ajax.php)
-
tags/3.1.7/includes/class-clearsale-total-api.php (copied) (copied from clearsale-total/trunk/includes/class-clearsale-total-api.php)
-
tags/3.1.7/includes/class-clearsale-total-checkout.php (copied) (copied from clearsale-total/trunk/includes/class-clearsale-total-checkout.php) (1 diff)
-
tags/3.1.7/includes/class-clearsale-total-deactivator.php (copied) (copied from clearsale-total/trunk/includes/class-clearsale-total-deactivator.php)
-
tags/3.1.7/includes/class-clearsale-total-extrafields.php (copied) (copied from clearsale-total/trunk/includes/class-clearsale-total-extrafields.php)
-
tags/3.1.7/includes/class-clearsale-total-footer.php (copied) (copied from clearsale-total/trunk/includes/class-clearsale-total-footer.php)
-
tags/3.1.7/includes/class-clearsale-total-requirements.php (copied) (copied from clearsale-total/trunk/includes/class-clearsale-total-requirements.php)
-
tags/3.1.7/includes/class-clearsale-total-status.php (copied) (copied from clearsale-total/trunk/includes/class-clearsale-total-status.php)
-
tags/3.1.7/includes/class-clearsale-total.php (copied) (copied from clearsale-total/trunk/includes/class-clearsale-total.php) (1 diff)
-
tags/3.1.7/includes/index.php (copied) (copied from clearsale-total/trunk/includes/index.php)
-
tags/3.1.7/public/js/clearsale-total-public-txt.php (copied) (copied from clearsale-total/trunk/public/js/clearsale-total-public-txt.php)
-
tags/3.1.7/public/js/clearsale-total-public.js (copied) (copied from clearsale-total/trunk/public/js/clearsale-total-public.js)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/clearsale-total.php (modified) (2 diffs)
-
trunk/includes/class-clearsale-total-checkout.php (modified) (1 diff)
-
trunk/includes/class-clearsale-total.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
clearsale-total/tags/3.1.7/CHANGELOG.md
r3301026 r3307661 1 ## [3.1.7] - 2025-06-06 2 3 ## Fixed 4 - Alterado o wp_schedule_single_event para envio de pedido atrasado 5 6 1 7 ## [3.1.6] - 2025-03-26 2 8 -
clearsale-total/tags/3.1.7/README.txt
r3301026 r3307661 5 5 Requires at least: 5.0 6 6 Tested up to: 6.8 7 Stable tag: 3.1. 67 Stable tag: 3.1.7 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 81 81 82 82 == Changelog == 83 ## [3.1.7] - 2025-06-06 84 85 ## Fixed 86 - Alterado o wp_schedule_single_event para envio de pedido atrasado 87 88 83 89 ## [3.1.6] - 2025-03-26 84 90 -
clearsale-total/tags/3.1.7/clearsale-total.php
r3301026 r3307661 18 18 * Plugin URI: https://api.clearsale.com.br/docs/plugins/wooCommerce/totalTotalGarantidoApplication 19 19 * Description: Integração da loja WooCommerce e a ClearSale Total. Segurança para suas vendas. 20 * Version: 3.1. 620 * Version: 3.1.7 21 21 * Author: ClearSale 22 22 * Author URI: https://br.clear.sale … … 58 58 * Rename this for your plugin and update it as you release new versions. 59 59 */ 60 define('CLEARSALE_TOTAL_VERSION', '3.1. 6');60 define('CLEARSALE_TOTAL_VERSION', '3.1.7'); 61 61 62 62 /** -
clearsale-total/tags/3.1.7/includes/class-clearsale-total-checkout.php
r3301026 r3307661 452 452 453 453 $tempo = 60; // um minuto 454 return(1); 454 455 $wl = new Clearsale_Total_Log('clearsale-total', CLEARSALE_TOTAL_VERSION); 455 456 $wl->write_log("Clearsale_Total_Checkout:Cs_total_resend_orders: Verificar envio em " . ($tempo/60) . " minuto(s) do pedido=" . $order_id); -
clearsale-total/tags/3.1.7/includes/class-clearsale-total.php
r3301026 r3307661 334 334 $this->loader->add_action('woocommerce_checkout_order_processed', $plugin_checkout, 'Cs_total_checkout_order_processed', 10, 3); 335 335 $this->loader->add_action('woocommerce_thankyou', $plugin_checkout, 'Cs_total_thankyou', 20, 1); 336 $this->loader->add_action('woocommerce_thankyou', $plugin_checkout, 'Cs_total_resend_orders', 20, 1);336 //$this->loader->add_action('woocommerce_thankyou', $plugin_checkout, 'Cs_total_resend_orders', 20, 1); 337 337 // registra webhook, o wp_schedule_single_event só com webhooks 338 $this->loader->add_action('Cs_total_resend_order', $plugin_checkout, 'Cs_total_resend_order', 20, 1);338 //$this->loader->add_action('Cs_total_resend_order', $plugin_checkout, 'Cs_total_resend_order', 20, 1); 339 339 $this->loader->add_action('woocommerce_before_thankyou', $plugin_checkout, 'Cs_total_before_thankyou', 10, 1); 340 340 $this->loader->add_action('woocommerce_payment_complete', $plugin_checkout, 'Cs_total_payment_complete', 10, 3); -
clearsale-total/trunk/CHANGELOG.md
r3301026 r3307661 1 ## [3.1.7] - 2025-06-06 2 3 ## Fixed 4 - Alterado o wp_schedule_single_event para envio de pedido atrasado 5 6 1 7 ## [3.1.6] - 2025-03-26 2 8 -
clearsale-total/trunk/README.txt
r3301026 r3307661 5 5 Requires at least: 5.0 6 6 Tested up to: 6.8 7 Stable tag: 3.1. 67 Stable tag: 3.1.7 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 81 81 82 82 == Changelog == 83 ## [3.1.7] - 2025-06-06 84 85 ## Fixed 86 - Alterado o wp_schedule_single_event para envio de pedido atrasado 87 88 83 89 ## [3.1.6] - 2025-03-26 84 90 -
clearsale-total/trunk/clearsale-total.php
r3301026 r3307661 18 18 * Plugin URI: https://api.clearsale.com.br/docs/plugins/wooCommerce/totalTotalGarantidoApplication 19 19 * Description: Integração da loja WooCommerce e a ClearSale Total. Segurança para suas vendas. 20 * Version: 3.1. 620 * Version: 3.1.7 21 21 * Author: ClearSale 22 22 * Author URI: https://br.clear.sale … … 58 58 * Rename this for your plugin and update it as you release new versions. 59 59 */ 60 define('CLEARSALE_TOTAL_VERSION', '3.1. 6');60 define('CLEARSALE_TOTAL_VERSION', '3.1.7'); 61 61 62 62 /** -
clearsale-total/trunk/includes/class-clearsale-total-checkout.php
r3301026 r3307661 452 452 453 453 $tempo = 60; // um minuto 454 return(1); 454 455 $wl = new Clearsale_Total_Log('clearsale-total', CLEARSALE_TOTAL_VERSION); 455 456 $wl->write_log("Clearsale_Total_Checkout:Cs_total_resend_orders: Verificar envio em " . ($tempo/60) . " minuto(s) do pedido=" . $order_id); -
clearsale-total/trunk/includes/class-clearsale-total.php
r3301026 r3307661 334 334 $this->loader->add_action('woocommerce_checkout_order_processed', $plugin_checkout, 'Cs_total_checkout_order_processed', 10, 3); 335 335 $this->loader->add_action('woocommerce_thankyou', $plugin_checkout, 'Cs_total_thankyou', 20, 1); 336 $this->loader->add_action('woocommerce_thankyou', $plugin_checkout, 'Cs_total_resend_orders', 20, 1);336 //$this->loader->add_action('woocommerce_thankyou', $plugin_checkout, 'Cs_total_resend_orders', 20, 1); 337 337 // registra webhook, o wp_schedule_single_event só com webhooks 338 $this->loader->add_action('Cs_total_resend_order', $plugin_checkout, 'Cs_total_resend_order', 20, 1);338 //$this->loader->add_action('Cs_total_resend_order', $plugin_checkout, 'Cs_total_resend_order', 20, 1); 339 339 $this->loader->add_action('woocommerce_before_thankyou', $plugin_checkout, 'Cs_total_before_thankyou', 10, 1); 340 340 $this->loader->add_action('woocommerce_payment_complete', $plugin_checkout, 'Cs_total_payment_complete', 10, 3);
Note: See TracChangeset
for help on using the changeset viewer.