PluginProbe
FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS & Online Courses / 1.0.97
FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS & Online Courses v1.0.97
2.10.0 2.10.01 2.9.1 2.9.0 2.8.1 2.8.0 2.7.7 2.7.5 2.7.0 2.6.01 2.6.0 2.5.0 2.4.01 trunk 1.0.90 1.0.91 1.0.92 1.0.93 1.0.94 1.0.95 1.0.96 1.0.97 1.0.98 1.0.99 1.1.0 All 77 releases
fluent-community / fluent-community.php

fluent-community.php in FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS & Online Courses 1.0.97, at fluent-community.php

30 lines 980 B
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 * Plugin Name: FluentCommunity - Community & LMS Plugin
4 * Description: The super-fast Community Plugin for WordPress
5 * Version: 1.0.97
6 * Author: WPManageNinja LLC
7 * Author URI: https://fluentcommunity.co
8 * Plugin URI: https://fluentcommunity.co
9 * License: GPLv2 or later
10 * Text Domain: fluent-community
11 * Domain Path: /language/
12 */
13
14 define('FLUENT_COMMUNITY_PLUGIN_VERSION', '1.0.97');
15 define('FLUENT_COMMUNITY_PLUGIN_DIR', plugin_dir_path(__FILE__));
16 define('FLUENT_COMMUNITY_PLUGIN_URL', plugin_dir_url(__FILE__));
17 define('FLUENT_COMMUNITY_DIR_FILE', __FILE__);
18 define('FLUENT_COMMUNITY_START_TIME', microtime(true));
19 define('FLUENT_COMMUNITY_DB_VERSION', '1.0.5');
20
21 if (!defined('FLUENTCRM_COMMUNITY_UPLOAD_DIR')) {
22 define('FLUENT_COMMUNITY_UPLOAD_DIR', 'fluent-community');
23 }
24
25 require __DIR__ . '/vendor/autoload.php';
26
27 call_user_func(function ($bootstrap) {
28 $bootstrap(__FILE__);
29 }, require(__DIR__ . '/boot/app.php'));
30