| 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: 4.1.2 |
| 11 |
* Author: Paul Ryley |
| 12 |
* Author URI: https://profiles.wordpress.org/pryley#content-plugins |
| 13 |
* License: GPLv3 |
| 14 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.html |
| 15 |
* Requires at least: 6.1 |
| 16 |
* Requires PHP: 7.4 |
| 17 |
* Text Domain: blackbar |
| 18 |
* Domain Path: languages |
| 19 |
*/ |
| 20 |
defined('ABSPATH') || exit; |
| 21 |
|
| 22 |
require_once __DIR__.'/autoload.php'; |
| 23 |
require_once __DIR__.'/compatibility.php'; |
| 24 |
|
| 25 |
if (!defined('SAVEQUERIES')) { |
| 26 |
define('SAVEQUERIES', 1); |
| 27 |
} |
| 28 |
GeminiLabs\BlackBar\Application::load()->init(); |
| 29 |
|