PluginProbe
Black Bar / 4.1.2
Black Bar v4.1.2
trunk 1.0.0 1.1.0 1.2.0 2.0.0 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.2.0 2.2.1 3.0.0 3.1.0 4.0.0 4.0.1 4.0.2 4.0.3 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.2.0
blackbar / blackbar.php

blackbar.php in Black Bar 4.1.2, at blackbar.php

29 lines 985 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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