# fluentform/3.6.50/fluentform.php

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 3.6.50. 38 lines.

- Page: https://pluginprobe.com/plugins/fluentform/3.6.50/code/fluentform.php
- Raw: https://pluginprobe.com/plugins/fluentform/3.6.50/raw/fluentform.php
- Modified: 2020-08-24T15:02:06+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluentform/3.6.50/code/fluentform.php#L10-L20`.

```php
<?php
/*
Plugin Name: Fluent Forms
Description: Contact Form By Fluent Forms is the advanced Contact form plugin with drag and drop, multi column supported form builder plugin
Version: 3.6.50
Author: Contact Form - WPManageNinja LLC
Author URI: https://wpfluentforms.com
Plugin URI: https://wpmanageninja.com/wp-fluent-form/
License: GPLv2 or later
Text Domain: fluentform
Domain Path: /resources/languages
*/

defined('ABSPATH') or die;

defined('FLUENTFORM') or define('FLUENTFORM', true);
define('FLUENTFORM_DIR_PATH', plugin_dir_path(__FILE__));

defined('FLUENTFORM_VERSION') or define('FLUENTFORM_VERSION', '3.6.50');

if (!defined('FLUENTFORM_HAS_NIA')) {
    define('FLUENTFORM_HAS_NIA', true);
}

include FLUENTFORM_DIR_PATH . 'framework/Foundation/Bootstrap.php';

use FluentForm\Framework\Foundation\Bootstrap;

Bootstrap::run(__FILE__);

// Handle Newtwork new Site Activation
add_action('wpmu_new_blog', function ($blogId) {
    switch_to_blog($blogId);
    include_once plugin_dir_path(__FILE__) . 'app/Modules/Activator.php';
    (new FluentForm\App\Modules\Activator)->migrate();
    restore_current_blog();
});

```
