# fluent-community/1.0.94/fluent-community.php

FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS &amp; Online Courses, version 1.0.94. 31 lines.

- Page: https://pluginprobe.com/plugins/fluent-community/1.0.94/code/fluent-community.php
- Raw: https://pluginprobe.com/plugins/fluent-community/1.0.94/raw/fluent-community.php
- Modified: 2024-11-08T19:59:58+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-community/1.0.94/code/fluent-community.php#L10-L20`.

```php
<?php defined('ABSPATH') or die;

/*
Plugin Name: FluentCommunity - Community & LMS Plugin
Description: The super-fast Community Plugin for WordPress
Version: 1.0.94
Author: WPManageNinja LLC
Author URI: https://fluentcommunity.co
Plugin URI: https://fluentcommunity.co
License: GPLv2 or later
Text Domain: fluent-community
Domain Path: /language
*/

define('FLUENT_COMMUNITY_PLUGIN_VERSION', '1.0.94');
define('FLUENT_COMMUNITY_PLUGIN_DIR', plugin_dir_path(__FILE__));
define('FLUENT_COMMUNITY_PLUGIN_URL', plugin_dir_url(__FILE__));
define('FLUENT_COMMUNITY_DIR_FILE', __FILE__);
define('FLUENT_COMMUNITY_START_TIME', microtime(true));
define('FLUENT_COMMUNITY_DB_VERSION', '1.0.5');

if (!defined('FLUENTCRM_COMMUNITY_UPLOAD_DIR')) {
    define('FLUENT_COMMUNITY_UPLOAD_DIR', 'fluent-community');
}

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

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

```
