# fluent-support/trunk/fluent-support.php

Fluent Support – Helpdesk &amp; Customer Support Ticket System, version trunk. 35 lines.

- Page: https://pluginprobe.com/plugins/fluent-support/trunk/code/fluent-support.php
- Raw: https://pluginprobe.com/plugins/fluent-support/trunk/raw/fluent-support.php
- Modified: 2026-08-19T14:51:44+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/fluent-support/trunk/code/fluent-support.php#L10-L20`.

```php
<?php defined('ABSPATH') or die;
/**
 * Plugin Name: Fluent Support
 * Description: The Ultimate Support Plugin For Your WordPress.
 * Version: 2.3.2
 * Author: WPManageNinja LLC
 * Author URI: https://wpmanageninja.com
 * Plugin URI: https://fluentsupport.com
 * License: GPLv2 or later
 * Text Domain: fluent-support
 * Domain Path: /language
*/

define('FLUENT_SUPPORT_VERSION', '2.3.2');
define('FLUENT_SUPPORT_DB_VERSION', '1.0.5');
define('FLUENT_SUPPORT_PRO_MIN_VERSION', '2.3.2');
define('FLUENT_SUPPORT_UPLOAD_DIR', 'fluent-support');
define('FLUENT_SUPPORT_PLUGIN_URL', plugin_dir_url(__FILE__));
define('FLUENT_SUPPORT_PLUGIN_PATH', plugin_dir_path(__FILE__));

require __DIR__ . '/vendor/autoload.php';

call_user_func(function ($bootstrap) {
    $bootstrap(__FILE__);
}, require(__DIR__ . '/boot/app.php'));


add_action('wp_insert_site', function ($new_site) {
    if (is_plugin_active_for_network('fluent-support/fluent-support.php')) {
        switch_to_blog($new_site->blog_id);
        (new \FluentSupport\App\Hooks\Handlers\ActivationHandler)->handle(false);
        restore_current_blog();
    }
});

```
