Changeset 2422101
- Timestamp:
- 11/20/2020 08:02:47 AM (5 years ago)
- Location:
- crm-thrive
- Files:
-
- 28 added
- 3 edited
-
tags/1.9 (added)
-
tags/1.9/admin (added)
-
tags/1.9/admin/class-wsl-admin.php (added)
-
tags/1.9/admin/editor-panel.php (added)
-
tags/1.9/admin/partials (added)
-
tags/1.9/admin/partials/send_to_company_field.php (added)
-
tags/1.9/admin/partials/typeform_token_field.php (added)
-
tags/1.9/crm-thrive.php (added)
-
tags/1.9/helpers.php (added)
-
tags/1.9/includes (added)
-
tags/1.9/includes/assets (added)
-
tags/1.9/includes/assets/custom.js (added)
-
tags/1.9/includes/class-wsl-api.php (added)
-
tags/1.9/includes/class-wsl-beaver-api.php (added)
-
tags/1.9/includes/class-wsl-cf7-api.php (added)
-
tags/1.9/includes/class-wsl-divi-api.php (added)
-
tags/1.9/includes/class-wsl-elementor-api.php (added)
-
tags/1.9/includes/class-wsl-gravity-api.php (added)
-
tags/1.9/includes/class-wsl-ninja-api.php (added)
-
tags/1.9/includes/class-wsl-smartforms-api.php (added)
-
tags/1.9/includes/class-wsl-typeform-api.php (added)
-
tags/1.9/includes/class-wsl-wpbrizy-api.php (added)
-
tags/1.9/includes/class-wsl-wpf-api.php (added)
-
tags/1.9/includes/class-wsl-wpff-api.php (added)
-
tags/1.9/includes/helpers.php (added)
-
tags/1.9/includes/wsl-base.php (added)
-
tags/1.9/readme.txt (added)
-
trunk/crm-thrive.php (modified) (4 diffs)
-
trunk/includes/class-wsl-smartforms-api.php (added)
-
trunk/includes/class-wsl-wpbrizy-api.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
crm-thrive/trunk/crm-thrive.php
r2415572 r2422101 5 5 * Plugin URI: https://www.crmthrive.com/ 6 6 * Description: Save the leads to Thrive system generated by various form plugins. We currently support CF7, Ninja Forms, WP Forms, Gravity Forms and Elementor Builder. 7 * Version: 1. 87 * Version: 1.9 8 8 * Author: Thrive 9 9 * Author URI: https://profiles.wordpress.org/crmthrive/ … … 45 45 require_once WSL_INCLUDES_DIR . '/class-wsl-beaver-api.php'; 46 46 require_once WSL_INCLUDES_DIR . '/class-wsl-wpbrizy-api.php'; 47 require_once WSL_INCLUDES_DIR . '/class-wsl-smartforms-api.php'; 47 48 48 49 if(is_admin()){ … … 209 210 } 210 211 211 add_action( 'wp_ajax_brizy_submit_form', 'wsl_brizy');212 add_action('wp_ajax_brizy_submit_form', 'wsl_brizy'); 212 213 add_action("wp_ajax_nopriv_brizy_submit_form", "wsl_brizy"); 213 214 … … 222 223 $laravel_api->call(); 223 224 } 225 226 add_action( 'wp_ajax_rednao_smart_forms_save_form_values','wsl_smart_forms'); 227 add_action( 'wp_ajax_nopriv_rednao_smart_forms_save_form_values','wsl_smart_forms'); 228 229 function wsl_smart_forms($data){ 230 if(!is_send_to_crm()){ 231 return false; 232 } 233 $fields_data = $_POST; 234 235 $laravel_api = new Wsl_SmartForms_Api($fields_data); 236 $laravel_api->set_submission_instance($_POST); 237 $laravel_api->call(); 238 } -
crm-thrive/trunk/includes/class-wsl-wpbrizy-api.php
r2415572 r2422101 24 24 $result = $this->send_call(); 25 25 $this->process_result($result); 26 27 die();28 26 } 29 27 -
crm-thrive/trunk/readme.txt
r2415572 r2422101 4 4 Requires at least: 2.0 5 5 Tested up to: 5.5.3 6 Stable tag: 1. 86 Stable tag: 1.9 7 7 Requires PHP: 5.2.4 8 8 License: GPLv2 or later … … 59 59 * Error issues fixed 60 60 * Enable sending to CRM Issues fixed 61 62 = 1.9 = 63 * SmartForm Plugin Added 64 * Issue Fixed in Brizy Builder
Note: See TracChangeset
for help on using the changeset viewer.