-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
22 lines (18 loc) · 812 Bytes
/
index.php
File metadata and controls
22 lines (18 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/*
Plugin Name: BlackBox
Plugin URI: https://github.com/daigo75/blackbox-debug-bar
Description: BlackBox is designed for WordPress plugin and theme developers, it uses unobstrusive box that contatins useful informatiom (executed queries, global variables, notices, warnings and profiler). BlackBox should be used in development environment only
Author: Grzegorz Winiarski, Diego Zanella
Version: 0.1.5
Author URI: http://ditio.net/
*/
if(!defined("SAVEQUERIES")) {
define("SAVEQUERIES", 1);
}
define("BLACKBOX_DIR", dirname(__FILE__));
require_once BLACKBOX_DIR."/application/BlackBox.php";
require_once BLACKBOX_DIR."/application/BlackBox/Profiler.php";
require_once BLACKBOX_DIR."/application/BlackBox/Hook.php";
require_once BLACKBOX_DIR."/application/BlackBox/Exception.php";
BlackBox::init();