PluginProbe
Black Bar / 2.1.4
Black Bar v2.1.4
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 2.1.4, at blackbar.php

32 lines 1.0 KB
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: 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