Changeset 2499073
- Timestamp:
- 03/19/2021 01:05:34 AM (5 years ago)
- Location:
- powers-triggers-of-woo-to-chat/trunk
- Files:
-
- 3 added
- 3 edited
-
admin/class-wwp-admin.php (modified) (2 diffs)
-
admin/views/wwp-woofunnels.php (added)
-
class-wwp-woofunnels-front.php (added)
-
include/class-wwp-woofunnels.php (added)
-
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
r2486190 r2499073 49 49 if (wwp_is_plugin_active('jet-engine/jet-engine.php')){ 50 50 $subMenus[] = array('woowhatspowers-jet-booking','Jet Engine Template',array( $this, 'wwp_view_jetbooking' ),20); 51 } 52 53 //Woofunnels 54 if (wwp_is_plugin_active('wp-marketing-automations-connectors/wp-marketing-automations-connectors.php')){ 55 $subMenus[] = array('woowhatspowers-woofunnels','Woofunnels Template',array( $this, 'wwp_view_woofunnels' ),20); 51 56 } 52 57 … … 210 215 } 211 216 217 /*Woofunnels*/ 218 function wwp_view_woofunnels (){ 219 wp_enqueue_script( 'wwp-admin-script', plugin_dir_url( __FILE__ ) . 'js/script.js', array('jquery'), rand(0,1000), true ); 220 wp_enqueue_style( 'wwp-admin-style', plugin_dir_url( __FILE__ ) . 'css/style.css', '', rand(0,1000), false ); 221 wp_enqueue_script( 'jquery-ui-accordion' ); 222 wp_enqueue_style( 'jquery-ui-style' ); 223 require_once plugin_dir_path(dirname(__FILE__)).'include/class-wwp-woofunnels.php'; 224 $j = new Woowhatspowers_Woofunnels(); 225 226 if (isset($_POST) ) { 227 if (!$j->wpp_saveAcoes($_POST) === false) { 228 pac_admin_notices('Ações salvas com sucesso!'); 229 } 230 } 231 $acoes = $j->wpp_getAcoes(); 232 require_once plugin_dir_path(dirname(__FILE__)).'admin/views/wwp-woofunnels.php'; 233 } 234 235 236 237 212 238 /* Campanhas */ 213 239 function wwp_view_woocommerce_campanha () { -
powers-triggers-of-woo-to-chat/trunk/readme.txt
r2496199 r2499073 54 54 55 55 == Changelog == 56 * 1. 5.857 * Integração com plugins InCuca Tech - Pix for WooCommerce e Advanced Shipment Tracking for WooCommerce;56 * 1.6.0 57 * Nova integração ! Crie ações com qualquer evento do plugin Autonami Marketing Automations Connectors; 58 58 * 1.5.2 59 59 * Nova função da integração do CartBounty, envie mensagens automaticamente; -
powers-triggers-of-woo-to-chat/trunk/wc-whatsapp-powers.php
r2496199 r2499073 4 4 * Plugin URI: https://wordpress.org/plugins/powers-triggers-of-woo-to-chat/ 5 5 * Description: Automatiza envio de mensagens Whatsapp. 6 * Version: 1. 5.86 * Version: 1.6.0 7 7 * Author: Felipe Peixoto 8 8 * Author URI: http://felipepeixoto.tecnologia.ws/projetos/plugins-para-wordpress/notificacoes-de-pedidos-por-whatsapp/ … … 168 168 169 169 } 170 171 //Woofunnels ss 172 if (wwp_is_plugin_active('wp-marketing-automations-connectors/wp-marketing-automations-connectors.php')){ 173 if (!class_exists('Woowhatspowers_woofunnels_Front')) { 174 global $wwp_db_path; 175 require_once($wwp_db_path . 'class-wwp-woofunnels-front.php'); 176 } 177 $j = new Woowhatspowers_woofunnels_Front(); 178 $j->setActions(); 179 180 } 170 181 if (isset($_GET['remind-test'])) { 171 182 do_action( 'wwp_reminder_action' );
Note: See TracChangeset
for help on using the changeset viewer.