PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 6.1.2
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v6.1.2
6.2.13 6.2.12 6.2.10 6.2.11 6.2.9 6.2.8 6.2.7 6.2.6 6.2.5 6.2.4 6.2.3 6.2.2 3.6.22 3.6.31 3.6.40 3.6.41 3.6.42 3.6.50 3.6.51 3.6.60 3.6.61 3.6.62 3.6.64 3.6.65 3.6.66 All 195 releases
fluentform / fluentform.php

fluentform.php in Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder 6.1.2, at fluentform.php

31 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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