Changeset 2270887
- Timestamp:
- 03/30/2020 02:53:02 PM (6 years ago)
- Location:
- cf7-db-tool
- Files:
-
- 13 added
- 3 edited
-
assets/screenshot-10.png (added)
-
assets/screenshot-11.png (added)
-
assets/screenshot-12.png (added)
-
assets/screenshot-9.png (added)
-
trunk/cf7-db-tool.php (modified) (1 diff)
-
trunk/readme.txt (modified) (5 diffs)
-
trunk/src/Integration (added)
-
trunk/src/Integration/cf7 (added)
-
trunk/src/Integration/cf7/admin (added)
-
trunk/src/Integration/cf7/admin/webhook-panel-html.php (added)
-
trunk/src/Integration/cf7/admin/zapier-panel-html.php (added)
-
trunk/src/Integration/cf7/class-module-cf7.php (added)
-
trunk/src/Integration/integration.php (added)
-
trunk/src/Integration/zapier (added)
-
trunk/src/Integration/zapier/class-module-zapier.php (added)
-
trunk/src/Plugin.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cf7-db-tool/trunk/cf7-db-tool.php
r2270093 r2270887 2 2 if ( ! defined( 'ABSPATH' ) ) exit; 3 3 /** 4 * Plugin Name: CF7 DB Tool 4 * Plugin Name: CF7 DB Tool & Webhook & Zapier & Bulk Email - All in one. 5 5 * Plugin URI: https://orangetoolz.com/ 6 * Description: Save all contact form 7 submitted data to the database, View, Export, See status and many more.6 * Description: Save all contact form 7 submitted data to the database, View, Export, See status and Integration webhook by zapier. 7 7 * Author: OrangeToolz 8 8 * Text Domain: cf7-db-tool 9 * Tags: contact, cf7, contact form 7, db, export, save, wpcf7, contact form 7 db, contact form 7 database, contact form 7 data export, contact form 7 database addon10 * Version: 3.5.19 * Tags: contact, cf7, zapier, integration, webhook, bulk mail, contact form 7, db, export, save, wpcf7, contact form 7 db, contact form 7 database, contact form 7 data export, contact form 7 database addon 10 * Version: 4.0.0 11 11 */ 12 12 13 define('CF7_DBT_VERSION', ' 3.5.1');14 define('CF7_DBT_DB_VERSION', ' 3.5.1');13 define('CF7_DBT_VERSION', '4.0.0'); 14 define('CF7_DBT_DB_VERSION', '4.0.0'); 15 15 define('CF7_DBT_PATH', __DIR__); 16 16 define('CF7_DBT_URL', plugins_url(basename(CF7_DBT_PATH))); -
cf7-db-tool/trunk/readme.txt
r2270093 r2270887 1 === CF7 DB Tool ===1 === CF7 DB Tool & Webhook & Zapier & Bulk Email - All in one. === 2 2 Contributors: orangetoolz 3 Tags: contact, cf7, contact form 7, db, export, save, wpcf7, contact form 7 db, contact form 7 database, contact form 7 data export, contact form 7 database addon3 Tags: contact, cf7, zapier, integration, webhook, bulk mail, contact form 7, db, export, save, wpcf7, contact form 7 db, contact form 7 database, contact form 7 data export, contact form 7 database addon 4 4 Requires at least: 4.8 5 5 Tested up to: 5.3 6 Stable tag: 3.5.16 Stable tag: 4.0.0 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 13 13 14 14 After installing the plugin it automatically captures and stores all contact form 7 submission inside the wp-admin interface. 15 16 == Ingetration with Webhook by zapier == 17 You can now Automated your contact for using Zapier integration and webhook setting. Using Zapier you can now send the contact information in anywhere you want. Zapier is the easiest way to automate your works. Also using webhook you can take the contact form data in any kinds of CRM tool. 18 19 Using our Plugin, You can now Automated your contact form( CF7 ) for using Zapier integration and webhook setting. Using Zapier you can now send the contact information in anywhere you want. Zapier is the easiest way to automate your works. Also using webhook you can take the contact form data in any kinds of CRM tool. 20 21 CONFIGURATION 22 This is an example to integrate with Zapier: 23 1). Create a Zap. 24 2). Choose your trigger as “Webhooks” app (Screenshot 10). 25 3). Choose “Catch Hook” option (Screenshot 11). 26 4). Done! Now insert the URL given (Screenshot 12) into your Contact Form configuration and activate the integration. 27 28 CREATING YOUR WORKFLOW 29 30 After configuration, you can send one form to create an example data into Zapier dashboard. Then you can continue creating your workflow with filters and other apps. 15 31 16 32 Some major Features are listed below: … … 28 44 * Send individual reply email form admin (Available if form submission contains any email address) 29 45 * Bulk email 30 * Upload mail form CSV * 46 * Upload mail form CSV 47 * Integration Webhook by Zapier 31 48 32 49 Upcoming features: 33 50 34 * Implement Webhook35 51 * Email integration with bulk mail 36 52 … … 52 68 7. Last 12 month graph report 53 69 8. Bulk mail 70 9. Webhook Active/Configuration 71 10. Zapier Step 1 - Choosing you app trigger 72 11. Zapier Step 2 - Choosing Catch Hook option 73 12. Zapier Step 3 - Webhook URL (waiting for first data) 54 74 55 75 == Frequently asked questions == … … 117 137 *Bug fix 118 138 139 = 4.0.0 = 140 *Release Date - March 30, 2020* 141 *Integration Webhook by Zapier 119 142 143 -
cf7-db-tool/trunk/src/Plugin.php
r2265613 r2270887 1 1 <?php 2 2 namespace CF7DBTOOL; 3 use CFTZ_Module_CF7; 4 use CFTZ_Module_Zapier; 5 3 6 class Plugin 4 7 { … … 23 26 24 27 private $report; 28 /** 29 * method __construct() 30 */ 31 // private $integration; 25 32 /** 26 33 * method __construct() … … 53 60 require_once 'Report.php'; 54 61 require_once'BulkMail.php'; 62 require_once 'Integration/integration.php'; 55 63 $this->config = new Config(); 56 64 add_action('admin_menu', [$this, 'addOptionsPage'], 5);
Note: See TracChangeset
for help on using the changeset viewer.