| 1 |
<?php defined('ABSPATH') or die(__FILE__); |
| 2 |
|
| 3 |
/** |
| 4 |
Plugin Name: FluentPlayer – Video Player With Forms & Lead Capture |
| 5 |
Description: FluentPlayer - A Media Player for WordPress |
| 6 |
Version: 1.0.8 |
| 7 |
Author: techjewel, wpmanageninja |
| 8 |
Author URI: https://fluentplayer.com |
| 9 |
License: GPLv2 or later |
| 10 |
Text Domain: fluent-player |
| 11 |
Domain Path: /language |
| 12 |
*/ |
| 13 |
|
| 14 |
defined('ABSPATH') or die; |
| 15 |
|
| 16 |
defined('FLUENT_PLAYER') or define('FLUENT_PLAYER', true); |
| 17 |
define('FLUENT_PLAYER_DIR_PATH', plugin_dir_path(__FILE__)); |
| 18 |
define('FLUENT_PLAYER_URL', plugin_dir_url(__FILE__)); |
| 19 |
define('FLUENT_PLAYER_DIR_FILE', __FILE__); |
| 20 |
|
| 21 |
defined('FLUENT_PLAYER_VERSION') or define('FLUENT_PLAYER_VERSION', '1.0.8'); |
| 22 |
define('FLUENT_PLAYER_DB_VERSION', '1.2.3'); |
| 23 |
defined('FLUENT_PLAYER_MIN_PRO_VERSION') or define('FLUENT_PLAYER_MIN_PRO_VERSION', '1.0.7'); |
| 24 |
/*************** Code IS Poetry **************/ |
| 25 |
return (function($_) { |
| 26 |
|
| 27 |
return $_(__FILE__); |
| 28 |
})( |
| 29 |
require __DIR__.'/boot/app.php', |
| 30 |
|
| 31 |
require __DIR__.'/vendor/autoload.php' |
| 32 |
); |
| 33 |
/************ Built With WPFluent *************/ |
| 34 |
|