| 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: 5.0.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 |
|
| 17 |
defined('FLUENTFORM') or define('FLUENTFORM', true); |
| 18 |
define('FLUENTFORM_DIR_PATH', plugin_dir_path(__FILE__)); |
| 19 |
|
| 20 |
define('FLUENTFORM_FRAMEWORK_UPGRADE', '4.3.22'); |
| 21 |
defined('FLUENTFORM_VERSION') or define('FLUENTFORM_VERSION', '5.0.2'); |
| 22 |
|
| 23 |
if (!defined('FLUENTFORM_HAS_NIA')) { |
| 24 |
define('FLUENTFORM_HAS_NIA', true); |
| 25 |
} |
| 26 |
|
| 27 |
require __DIR__.'/vendor/autoload.php'; |
| 28 |
|
| 29 |
call_user_func(function($bootstrap) { |
| 30 |
$bootstrap(__FILE__); |
| 31 |
}, require(__DIR__.'/boot/app.php')); |
| 32 |
|