| 1 |
<?php defined('ABSPATH') or die; |
| 2 |
|
| 3 |
/* |
| 4 |
Plugin Name: FluentCommunity - Community & LMS Plugin |
| 5 |
Description: The super-fast Community Plugin for WordPress |
| 6 |
Version: 1.0.90 |
| 7 |
Author: WPManageNinja LLC |
| 8 |
Author URI: https://fluentcommunity.co |
| 9 |
Plugin URI: https://fluentcommunity.co |
| 10 |
License: GPLv2 or later |
| 11 |
Text Domain: fluent-community |
| 12 |
Domain Path: /language |
| 13 |
*/ |
| 14 |
|
| 15 |
define('FLUENT_COMMUNITY_PLUGIN_VERSION', '1.0.90'); |
| 16 |
define('FLUENT_COMMUNITY_PLUGIN_DIR', plugin_dir_path(__FILE__)); |
| 17 |
define('FLUENT_COMMUNITY_PLUGIN_URL', plugin_dir_url(__FILE__)); |
| 18 |
define('FLUENT_COMMUNITY_DIR_FILE', __FILE__); |
| 19 |
define('FLUENT_COMMUNITY_START_TIME', microtime(true)); |
| 20 |
define('FLUENT_COMMUNITY_DB_VERSION', '1.0.5'); |
| 21 |
|
| 22 |
if (!defined('FLUENTCRM_COMMUNITY_UPLOAD_DIR')) { |
| 23 |
define('FLUENT_COMMUNITY_UPLOAD_DIR', 'fluent-community'); |
| 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 |
|