Changeset 2855853
- Timestamp:
- 01/27/2023 01:32:11 PM (3 years ago)
- Location:
- woozap/trunk
- Files:
-
- 5 edited
-
cf7-controller.php (modified) (4 diffs)
-
functions.php (modified) (3 diffs)
-
init.php (modified) (2 diffs)
-
readme.txt (modified) (5 diffs)
-
woo-controller.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
woozap/trunk/cf7-controller.php
r2852761 r2855853 42 42 43 43 $server = (isset($get_settings['server']) ? $get_settings['server'] : []); 44 44 45 $url = (isset($get_settings['url']) ? $get_settings['url'] : []); 45 46 $is_log_enable = (isset($get_settings['log']) ? (bool)$get_settings['log'] : 0); … … 50 51 $parsed_data = apply_filters( 'wpflyleads_cf7_parsed_data', $parsed_data ); 51 52 $connection_info = wpflyleads_curl('new_lead', $parsed_data, $url,$server); 52 53 53 54 $this_track_log['data'] = $parsed_data; 54 55 $this_track_log['sent_to_connection'] = 'no'; … … 98 99 $post_data = get_post_meta( $form_id, '_wpflyleads_settings', true ); 99 100 $logview = get_option('wpflyleads_log_cf7',[]); 100 101 101 102 if(isset($_GET['wpflyleads_action'])){ 103 102 104 update_option('wpflyleads_log_cf7',[]); 103 105 wp_redirect( $current_url ); … … 151 153 </div> 152 154 <?php 153 155 154 156 155 157 -
woozap/trunk/functions.php
r2852761 r2855853 12 12 '' => 'Select a Server', 13 13 'integromat' => 'Integromat', 14 'zapier' => 'Zapier' 14 'zapier' => 'Zapier', 15 'pabbly' => 'Pabbly' 15 16 ]; 16 17 … … 96 97 97 98 98 if($server == 'integromat'){ 99 100 if($server == 'integromat'){ 99 101 $server_output = (object) ['status' => (strtolower($server_output) == 'accepted' ? 'success' : 'failure')]; 100 102 } … … 105 107 $server_output = json_decode($server_output); 106 108 } 109 }elseif ($server == 'pabbly') { 110 $server_output = (array)json_decode($server_output); 111 unset($server_output['message']); 112 $server_output = (object)$server_output; 113 107 114 } 108 115 109 116 //file_put_contents(ABSPATH.'/wpflyleadslog.txt', json_encode( $server_output )); 110 117 return $server_output; -
woozap/trunk/init.php
r2852779 r2855853 2 2 /** 3 3 * @package WP AVCL Automation Helper (formerly WPFlyLeads) 4 * @version 3. 24 * @version 3.3 5 5 */ 6 6 /* 7 7 Plugin Name: WP AVCL Automation Helper (formerly WPFlyLeads) 8 Description: WP AVCL Automation Helper sends Orders from WooCommerce, submissions from the Contact Form 7 and entries from the Gravity Forms. 9 10 Using the Zapier premium webhook, Make (formerly Integromat) webhook to thousands of other platforms. 8 Description: WP AVCL Automation Helper supports Zapier, Make (formerly Integromat) and Pabbly to send Orders from WooCommerce, submissions from the Contact Form 7 and entries from the Gravity Forms to thousands of other platforms. 11 9 Author: Ankur Vishwakarma & Ankit Vishwakarma 12 10 Author URI: https://ankurvishwakarma.com 13 Version: 3. 211 Version: 3.3 14 12 Author Email : ankurvishwakarma54@yahoo.com 15 13 Domain : wpflyleads … … 76 74 77 75 function __construct(){ 78 $this->wpflyleads_version='3. 2';76 $this->wpflyleads_version='3.3'; 79 77 $this->wpflyleads_urlpath=plugin_dir_url( __FILE__ ); 80 78 $this->wpflyleads_dirpath=plugin_dir_path(__FILE__); -
woozap/trunk/readme.txt
r2852973 r2855853 2 2 Contributors: the-ank,ankitv 3 3 Donate link: http://paypal.me/ankurvishwakarma786 4 Tags: Automation, Automate leads, Webhooks, Zapier, Integromate, Make, WooCommerce, Gravity Forms, Contact Form 74 Tags: Automation, Automate leads, Webhooks, Zapier, Integromate, Pabbly, Make, WooCommerce, Gravity Forms, Contact Form 7 5 5 Requires at least: 5.5 6 6 Requires PHP: 5.5 7 7 Tested up to: 6.1.1 8 Stable tag: 3. 28 Stable tag: 3.3 9 9 License: GPLv2 or later 10 10 … … 12 12 == Description == 13 13 14 WP AVCL Automation Helper s ends-14 WP AVCL Automation Helper supports Zapier, Make (formerly Integromat) and Pabbly to send - 15 15 16 16 1. Orders from WooCommerce … … 18 18 3. Entries from the Gravity Forms 19 19 20 Using the Zapier premium webhook, Make (formerly Integromat) webhook to thousands of other platforms.20 To thousands of other platforms. 21 21 22 == Latest Version 3.2 == 23 1. Supports Gravity Forms Submissions Automation 24 2. Bug Fixes 25 2. Security Updates 26 3. UI Improvements 22 == Latest Version 3.3 == 23 1. Supports Pabbly integration with WooCommerce, Gravity Forms and Contact Form 7 27 24 28 25 == Notice == … … 33 30 34 31 1. Supports new server Integromat along with Zapier to send WooCommerce Orders via webhook. 35 2. Supports Contact Form 7 with a new Tab, "WP AVCL Automation Helper Settings," in each form to set up a connection and send leads to Zapier and Integ ormat.32 2. Supports Contact Form 7 with a new Tab, "WP AVCL Automation Helper Settings," in each form to set up a connection and send leads to Zapier and Integromat. 36 33 3. Moved WP AVCL Automation Helper settings underneath WooCommerce as submenu. Also, We applied fixes and corrections to the functionality of this page. 37 34 … … 113 110 * Security Updates 114 111 * UI Improvements 112 113 == 3.2 == 114 * Supports Gravity Forms Submissions Automation 115 * Bug Fixes 116 * Security Updates 117 * UI Improvements -
woozap/trunk/woo-controller.php
r2852761 r2855853 808 808 } 809 809 } //foreach 810 810 811 $connection_info = wpflyleads_curl('new_order', $order_info, $url,$url_server); 812 811 813 if ($connection_info->status == "success") 812 814 {
Note: See TracChangeset
for help on using the changeset viewer.