-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblackbar.php
28 lines (26 loc) · 985 Bytes
/
blackbar.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/**
* ╔═╗╔═╗╔╦╗╦╔╗╔╦ ╦ ╔═╗╔╗ ╔═╗
* ║ ╦║╣ ║║║║║║║║ ║ ╠═╣╠╩╗╚═╗
* ╚═╝╚═╝╩ ╩╩╝╚╝╩ ╩═╝╩ ╩╚═╝╚═╝.
*
* Plugin Name: Black Bar
* Plugin URI: https://wordpress.org/plugins/blackbar
* Description: Black Bar is a Debug Bar for WordPress developers.
* Version: 4.1.4
* Author: Paul Ryley
* Author URI: https://profiles.wordpress.org/pryley#content-plugins
* License: GPLv3
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
* Requires at least: 6.1
* Requires PHP: 7.4
* Text Domain: blackbar
* Domain Path: languages
*/
defined('ABSPATH') || exit;
require_once __DIR__.'/autoload.php';
require_once __DIR__.'/compatibility.php';
if (!defined('SAVEQUERIES')) {
define('SAVEQUERIES', 1);
}
GeminiLabs\BlackBar\Application::load()->init();