| 1 |
<?php |
| 2 |
/** |
| 3 |
* ╔═╗╔═╗╔╦╗╦╔╗╔╦ ╦ ╔═╗╔╗ ╔═╗ |
| 4 |
* ║ ╦║╣ ║║║║║║║║ ║ ╠═╣╠╩╗╚═╗ |
| 5 |
* ╚═╝╚═╝╩ ╩╩╝╚╝╩ ╩═╝╩ ╩╚═╝╚═╝ |
| 6 |
* |
| 7 |
* Plugin Name: Black Bar |
| 8 |
* Plugin URI: https://wordpress.org/plugins/blackbar |
| 9 |
* Description: Black Bar is a Debug Bar for WordPress developers. |
| 10 |
* Version: 2.1.4 |
| 11 |
* Author: Paul Ryley |
| 12 |
* Author URI: https://profiles.wordpress.org/pryley#content-plugins |
| 13 |
* License: GPL3 |
| 14 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.html |
| 15 |
* Text Domain: blackbar |
| 16 |
* Domain Path: languages |
| 17 |
*/ |
| 18 |
|
| 19 |
defined( 'WPINC' ) || die; |
| 20 |
|
| 21 |
if( !class_exists( 'GL_Plugin_Check_v3' )) { |
| 22 |
require_once __DIR__.'/activate.php'; |
| 23 |
} |
| 24 |
if( !(new GL_Plugin_Check_v3( __FILE__, array( 'php' => '5.6', 'wordpress' => '4.7.0' )))->canProceed() )return; |
| 25 |
require_once __DIR__.'/autoload.php'; |
| 26 |
require_once __DIR__.'/compatibility.php'; |
| 27 |
|
| 28 |
if( !defined( 'SAVEQUERIES' )) { |
| 29 |
define( 'SAVEQUERIES', 1 ); |
| 30 |
} |
| 31 |
(new GeminiLabs\BlackBar\Application)->init(); |
| 32 |
|