| 1 |
<?php |
| 2 |
/* |
| 3 |
Plugin Name: FluentForm |
| 4 |
Description: The most advanced drag and drop form builder plugin for WordPress. |
| 5 |
Version: 1.3.0 |
| 6 |
Author: WPFluentForm |
| 7 |
Author URI: https://wpfluentform.com |
| 8 |
Plugin URI: https://wpfluentform.com/ |
| 9 |
License: GPLv2 or later |
| 10 |
Text Domain: fluentform |
| 11 |
Domain Path: /resources/languages |
| 12 |
*/ |
| 13 |
|
| 14 |
defined('ABSPATH') or die; |
| 15 |
|
| 16 |
defined('FLUENTFORM') or define('FLUENTFORM', true); |
| 17 |
|
| 18 |
include "framework/Foundation/Bootstrap.php"; |
| 19 |
|
| 20 |
use FluentForm\Framework\Foundation\Bootstrap; |
| 21 |
|
| 22 |
Bootstrap::run(__FILE__); |
| 23 |
|
| 24 |
add_action('admin_init', function () { |
| 25 |
$url = 'https://adre20765.api-us1.com'; |
| 26 |
$key = '0c07455f78a76b3b9027df0c292c1fcacf225504d75dd147ca807972a1be7e823466df85'; |
| 27 |
|
| 28 |
// $api = new ActiveCampaign($url, $key); |
| 29 |
|
| 30 |
// dd($api->credentials_test()); |
| 31 |
}); |
| 32 |
|