| 1 |
<?php defined('ABSPATH') or die; |
| 2 |
|
| 3 |
/** |
| 4 |
* Plugin Name: Fluent Forms |
| 5 |
* Description: Contact Form By Fluent Forms is the advanced Contact form plugin with drag and drop, multi column supported form builder plugin |
| 6 |
* Version: 6.1.2 |
| 7 |
* Author: Contact Form - WPManageNinja LLC |
| 8 |
* Author URI: https://fluentforms.com |
| 9 |
* Plugin URI: https://wpmanageninja.com/wp-fluent-form/ |
| 10 |
* License: GPLv2 or later |
| 11 |
* Text Domain: fluentform |
| 12 |
* Domain Path: /resources/languages |
| 13 |
*/ |
| 14 |
|
| 15 |
defined('ABSPATH') or die; |
| 16 |
defined('FLUENTFORM') or define('FLUENTFORM', true); |
| 17 |
define('FLUENTFORM_DIR_PATH', plugin_dir_path(__FILE__)); |
| 18 |
define('FLUENTFORM_FRAMEWORK_UPGRADE', '4.3.22'); |
| 19 |
defined('FLUENTFORM_VERSION') or define('FLUENTFORM_VERSION', '6.1.2'); |
| 20 |
defined('FLUENTFORM_MINIMUM_PRO_VERSION') or define('FLUENTFORM_MINIMUM_PRO_VERSION', '6.0.0'); |
| 21 |
|
| 22 |
if (!defined('FLUENTFORM_HAS_NIA')) { |
| 23 |
define('FLUENTFORM_HAS_NIA', true); |
| 24 |
} |
| 25 |
|
| 26 |
require __DIR__.'/vendor/autoload.php'; |
| 27 |
|
| 28 |
call_user_func(function($bootstrap) { |
| 29 |
$bootstrap(__FILE__); |
| 30 |
}, require(__DIR__.'/boot/app.php')); |
| 31 |
|