| 1 |
<?php |
| 2 |
|
| 3 |
if (! \defined('ABSPATH')) { |
| 4 |
exit; |
| 5 |
} |
| 6 |
/** |
| 7 |
* Plugin Name: Bit File Manager |
| 8 |
* Plugin URI: https://bitapps.pro/bit-file-manager |
| 9 |
* Author: File Manager by Bit Form Team |
| 10 |
* Author URI: https://bitapps.pro |
| 11 |
* Version: 6.9.2 |
| 12 |
* Requires at least: 5.0 |
| 13 |
* Requires PHP: 7.4 |
| 14 |
* Text domain: file-manager |
| 15 |
* License: GPL v2 or later |
| 16 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html |
| 17 |
* Description: File Manager let you manage your file the way you like. |
| 18 |
* You can upload, delete, copy, move, rename, compress, extract files. |
| 19 |
* You don't need to worry about ftp. It is really simple and easy to use. |
| 20 |
* */ |
| 21 |
\define('BITAPPS_FM_MAIN_FILE', __FILE__); |
| 22 |
\define('BITAPPS_FM_BASEDIR', plugin_dir_path(__FILE__)); |
| 23 |
|
| 24 |
require_once 'backend' . DIRECTORY_SEPARATOR . 'bootstrap.php'; |
| 25 |
|