PluginProbe
FluentPlayer – Video Player With Forms & Lead Capture / 1.0.9
FluentPlayer – Video Player With Forms & Lead Capture v1.0.9
1.4.0 1.3.1 1.3.0 1.2.0 1.1.0 trunk 1.0.7 1.0.8 1.0.9
fluent-player / fluent-player.php

fluent-player.php in FluentPlayer – Video Player With Forms & Lead Capture 1.0.9, at fluent-player.php

34 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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.9
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.9');
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