| Server IP : 121.121.20.254 / Your IP : 216.73.216.142 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/KnowledgeBase/wp-content/plugins/filebird-pro/ |
Upload File : |
<?php
/**
* Plugin Name: FileBird Pro
* Plugin URI: https://ninjateam.org/wordpress-media-library-folders/
* Description: Organize thousands of WordPress media files into folders/ categories at ease.
* Version: 5.5.2
* Author: Ninja Team
* Author URI: https://ninjateam.org
* Text Domain: filebird
* Domain Path: /i18n/languages/
*/
namespace FileBird;
update_option( 'filebird_code', '**********' );
update_option( 'filebird_email', '**********' );
update_option( 'filebird_supported_until', '01.01.2030' );
defined( 'ABSPATH' ) || exit;
$php_version_valid = \version_compare( phpversion(), '7.4', '>=' );
if ( function_exists( 'FileBird\\init' ) ) {
require_once plugin_dir_path( __FILE__ ) . 'includes/Fallback.php';
add_action(
'admin_init',
function() {
deactivate_plugins( plugin_basename( __FILE__ ) );
}
);
return;
}
if ( ! defined( 'NJFB_PREFIX' ) ) {
define( 'NJFB_PREFIX', 'filebird' );
}
if ( ! defined( 'NJFB_VERSION' ) ) {
define( 'NJFB_VERSION', '5.5.2' );
}
if ( ! defined( 'NJFB_PLUGIN_FILE' ) ) {
define( 'NJFB_PLUGIN_FILE', __FILE__ );
}
if ( ! defined( 'NJFB_PLUGIN_URL' ) ) {
define( 'NJFB_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
}
if ( ! defined( 'NJFB_PLUGIN_PATH' ) ) {
define( 'NJFB_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
}
if ( ! defined( 'NJFB_PLUGIN_BASE_NAME' ) ) {
define( 'NJFB_PLUGIN_BASE_NAME', plugin_basename( __FILE__ ) );
}
if ( ! defined( 'NJFB_REST_URL' ) ) {
define( 'NJFB_REST_URL', 'filebird/v1' );
}
if ( ! defined( 'NJFB_REST_PUBLIC_URL' ) ) {
define( 'NJFB_REST_PUBLIC_URL', 'filebird/public/v1' );
}
if ( ! defined( 'NJFB_UPLOAD_DIR' ) ) {
define( 'NJFB_UPLOAD_DIR', 'filebird-uploads' );
}
if ( file_exists( NJFB_PLUGIN_PATH . '/vendor/autoload.php' ) && $php_version_valid ) {
require_once NJFB_PLUGIN_PATH . '/vendor/autoload.php';
}
spl_autoload_register(
function ( $class ) {
$prefix = __NAMESPACE__;
$base_dir = __DIR__ . '/includes';
$len = strlen( $prefix );
if ( strncmp( $prefix, $class, $len ) !== 0 ) {
return;
}
$relative_class_name = substr( $class, $len );
$file = $base_dir . str_replace( '\\', '/', $relative_class_name ) . '.php';
if ( file_exists( $file ) ) {
require $file;
}
}
);
if ( ! function_exists( 'FileBird\\init' ) ) {
function init() {
new Plugin();
new I18n();
new Classes\Feedback();
new Classes\Review();
new Classes\ActivePro();
new Admin\Settings();
Classes\Convert::getInstance();
Controller\Folder::getInstance();
// Support 3rd plugins
new Support\SupportController();
// Import from 3rd plugins
new Controller\Import\ImportController();
// Schedule
new Classes\Schedule();
// Gutenberg Blocks
new Blocks\BlockController();
// Addons
Classes\LoadAddons::getInstance();
if ( function_exists( 'register_block_type' ) ) {
require plugin_dir_path( __FILE__ ) . 'blocks/filebird-gallery/dist/init.php';
}
}
}
add_action( 'plugins_loaded', 'FileBird\\init' );
register_activation_hook( __FILE__, array( 'FileBird\\Plugin', 'activate' ) );
register_deactivation_hook( __FILE__, array( 'FileBird\\Plugin', 'deactivate' ) );