芝麻web文件管理V1.00
编辑当前文件:/home/p/r/i/prismawe/clients/_asap-ingenierie.fr/wp-content/plugins/boxzilla/boxzilla.php
. */ if ( ! defined( 'ABSPATH' ) ) { header( 'Status: 403 Forbidden' ); header( 'HTTP/1.1 403 Forbidden' ); exit; } /** * @ignore * @internal */ function _load_boxzilla() { define( 'BOXZILLA_FILE', __FILE__ ); define('BOXZILLA_VERSION' ,'3.2.11'); require __DIR__ . '/bootstrap.php'; } // Check if we're on PHP 5.2, if so: bail early. if( version_compare( PHP_VERSION, '5.3', '<' ) ) { require dirname( __FILE__ ) . '/src/class-php-fallback.php'; new Boxzilla_PHP_Fallback( 'Boxzilla', plugin_basename( __FILE__ ) ); return; } // load autoloader but only if not loaded already (for compat with sitewide autoloader) if( ! function_exists( 'boxzilla' ) ) { require __DIR__ . '/vendor/autoload.php'; } // register activation hook register_activation_hook( __FILE__, array( 'Boxzilla\\Admin\\Installer', 'run' ) ); // hook into plugins_loaded for boostrapping add_action( 'plugins_loaded', '_load_boxzilla', 8 );