Plugin Directory

Changeset 2855853


Ignore:
Timestamp:
01/27/2023 01:32:11 PM (3 years ago)
Author:
the ank
Message:

Updated to version 3.3 Pabbly supported

Location:
woozap/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • woozap/trunk/cf7-controller.php

    r2852761 r2855853  
    4242       
    4343        $server = (isset($get_settings['server']) ? $get_settings['server'] : []);
     44       
    4445        $url = (isset($get_settings['url']) ? $get_settings['url'] : []);
    4546        $is_log_enable = (isset($get_settings['log']) ? (bool)$get_settings['log'] : 0);
     
    5051        $parsed_data = apply_filters( 'wpflyleads_cf7_parsed_data', $parsed_data );
    5152        $connection_info = wpflyleads_curl('new_lead', $parsed_data, $url,$server);
    52         
     53     
    5354        $this_track_log['data'] = $parsed_data;
    5455        $this_track_log['sent_to_connection'] = 'no';
     
    9899        $post_data = get_post_meta( $form_id, '_wpflyleads_settings', true );
    99100        $logview = get_option('wpflyleads_log_cf7',[]);
    100         
     101       
    101102        if(isset($_GET['wpflyleads_action'])){
     103           
    102104            update_option('wpflyleads_log_cf7',[]);
    103105            wp_redirect( $current_url );
     
    151153        </div>
    152154        <?php
    153        
     155         
    154156       
    155157       
  • woozap/trunk/functions.php

    r2852761 r2855853  
    1212        ''  => 'Select a Server',
    1313        'integromat' => 'Integromat',
    14         'zapier'    => 'Zapier'
     14        'zapier'    => 'Zapier',
     15        'pabbly'    => 'Pabbly'
    1516    ];
    1617
     
    9697
    9798
    98 if($server == 'integromat'){
     99
     100if($server == 'integromat'){   
    99101$server_output = (object) ['status' => (strtolower($server_output) == 'accepted' ? 'success' : 'failure')];
    100102}
     
    105107        $server_output = json_decode($server_output);
    106108    }
     109}elseif ($server == 'pabbly') {
     110    $server_output = (array)json_decode($server_output);
     111    unset($server_output['message']);
     112    $server_output = (object)$server_output;
     113   
    107114}
    108 
     115 
    109116//file_put_contents(ABSPATH.'/wpflyleadslog.txt', json_encode( $server_output ));
    110117return $server_output;
  • woozap/trunk/init.php

    r2852779 r2855853  
    22/**
    33 * @package WP AVCL Automation Helper (formerly WPFlyLeads)
    4  * @version 3.2
     4 * @version 3.3
    55 */
    66/*
    77Plugin 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.
     8Description: 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.
    119Author: Ankur Vishwakarma & Ankit Vishwakarma
    1210Author URI: https://ankurvishwakarma.com
    13 Version: 3.2
     11Version: 3.3
    1412Author Email : ankurvishwakarma54@yahoo.com
    1513Domain : wpflyleads
     
    7674
    7775function __construct(){
    78 $this->wpflyleads_version='3.2';
     76$this->wpflyleads_version='3.3';
    7977$this->wpflyleads_urlpath=plugin_dir_url( __FILE__ );
    8078$this->wpflyleads_dirpath=plugin_dir_path(__FILE__);
  • woozap/trunk/readme.txt

    r2852973 r2855853  
    22Contributors: the-ank,ankitv
    33Donate link: http://paypal.me/ankurvishwakarma786
    4 Tags: Automation, Automate leads, Webhooks, Zapier, Integromate, Make, WooCommerce, Gravity Forms, Contact Form 7
     4Tags: Automation, Automate leads, Webhooks, Zapier, Integromate, Pabbly, Make, WooCommerce, Gravity Forms, Contact Form 7
    55Requires at least: 5.5
    66Requires PHP: 5.5
    77Tested up to: 6.1.1
    8 Stable tag: 3.2
     8Stable tag: 3.3
    99License: GPLv2 or later
    1010
     
    1212== Description ==
    1313
    14 WP AVCL Automation Helper sends -
     14WP AVCL Automation Helper supports Zapier, Make (formerly Integromat) and Pabbly to send -
    1515
    16161. Orders from WooCommerce
     
    18183. Entries from the Gravity Forms
    1919
    20 Using the Zapier premium webhook, Make (formerly Integromat) webhook to thousands of other platforms.
     20To thousands of other platforms.
    2121
    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 ==
     231. Supports Pabbly integration with WooCommerce, Gravity Forms and Contact Form 7
    2724
    2825== Notice ==
     
    3330
    34311. 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 Integormat.
     322. 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.
    36333. Moved WP AVCL Automation Helper settings underneath WooCommerce as submenu. Also, We applied fixes and corrections to the functionality of this page.
    3734
     
    113110* Security Updates
    114111* 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  
    808808            }
    809809        } //foreach
     810   
    810811        $connection_info = wpflyleads_curl('new_order', $order_info, $url,$url_server);
     812       
    811813        if ($connection_info->status == "success")
    812814        {
Note: See TracChangeset for help on using the changeset viewer.