Plugin Directory

Changeset 2463359


Ignore:
Timestamp:
01/27/2021 07:13:19 AM (5 years ago)
Author:
crmthrive
Message:

Formidable Forms Added

Location:
crm-thrive
Files:
31 added
2 edited

Legend:

Unmodified
Added
Removed
  • crm-thrive/trunk/crm-thrive.php

    r2440392 r2463359  
    55 * Plugin URI: https://www.crmthrive.com/
    66 * 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.11
     7 * Version: 1.12
    88 * Author: Thrive
    99 * Author URI: https://profiles.wordpress.org/crmthrive/
     
    4848require_once WSL_INCLUDES_DIR . '/class-wsl-caldera-api.php';
    4949require_once WSL_INCLUDES_DIR . '/class-wsl-thriveform-api.php';
     50require_once WSL_INCLUDES_DIR . '/class-wsl-formidable-api.php';
    5051
    5152if(is_admin()){
     
    5354    $admin_obj = new Wsl_Admin();
    5455}
    55 
    5656
    5757// define the wpcf7_submit callback
     
    268268    $laravel_api->call();
    269269}
     270
     271add_action('frm_after_create_entry', 'wsl_fomidable', 30, 2);
     272
     273function wsl_fomidable($entry_id, $form_id){
     274    $laravel_api = new Wsl_formidable_Api($entry_id, $form_id);
     275    $laravel_api->set_submission_instance($entry_id, $form_id);
     276    $laravel_api->call();
     277}
  • crm-thrive/trunk/readme.txt

    r2440392 r2463359  
    44Requires at least: 2.0
    55Tested up to: 5.6
    6 Stable tag: 1.11
     6Stable tag: 1.12
    77Requires PHP: 5.2.4
    88License: GPLv2 or later
     
    6969= 1.11 =
    7070* Thrive Theme Builder Added
     71
     72= 1.12 =
     73* Formidable Forms Added
Note: See TracChangeset for help on using the changeset viewer.