Changeset 2371301
- Timestamp:
- 08/28/2020 09:04:42 PM (6 years ago)
- Location:
- powers-triggers-of-woo-to-chat/trunk
- Files:
-
- 3 edited
-
admin/class-wwp-admin.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
wc-whatsapp-powers.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
powers-triggers-of-woo-to-chat/trunk/admin/class-wwp-admin.php
r2370678 r2371301 47 47 48 48 function wpp_load_custom_status(){ 49 $custom_status = apply_filters( 'wc_order_statuses', array());49 $custom_status = wc_get_order_statuses(); 50 50 $statusPadrao = array( 'wc-pending','wc-processing','wc-on-hold','wc-completed','wc-cancelled','wc-refunded','wc-failed'); 51 51 foreach ($custom_status as $key => $status) { -
powers-triggers-of-woo-to-chat/trunk/readme.txt
r2370678 r2371301 42 42 43 43 == Changelog == 44 * 1.2.2 45 * Suporte ao plugin 'WooCommerce Order Status Manager'; 44 46 * 1.2.1 45 47 * Pequena correção de bug; -
powers-triggers-of-woo-to-chat/trunk/wc-whatsapp-powers.php
r2370678 r2371301 4 4 * Plugin URI: https://wordpress.org/plugins/powers-triggers-of-woo-to-chat/ 5 5 * Description: Cria gatilhos para interação do Woocommerce com Whatsapp 6 * Version: 1.2. 16 * Version: 1.2.2 7 7 * Author: Felipe Peixoto 8 8 * Author URI: http://felipepeixoto.tecnologia.ws/ … … 36 36 $wwp_path = plugin_dir_path(__FILE__); 37 37 if (is_admin()){ 38 require plugin_dir_path( __FILE__ ) . 'admin/class-wwp-admin.php'; 38 add_action( 'init', 'wwp_init_admin', PHP_INT_MAX ); 39 } 40 function wwp_init_admin() { 41 require plugin_dir_path( __FILE__ ) . 'admin/class-wwp-admin.php'; 39 42 $wwp_admin = new Woowhatspowers_Admin(); 40 43 }
Note: See TracChangeset
for help on using the changeset viewer.