-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdebug-bar.php
More file actions
255 lines (211 loc) · 6.91 KB
/
debug-bar.php
File metadata and controls
255 lines (211 loc) · 6.91 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
<?php
/*
Plugin Name: Debug Bar
Plugin URI: http://wordpress.org/extend/plugins/debug-bar/
Description: Adds a debug menu to the admin bar that shows query, cache, and other helpful debugging information.
Author: wordpressdotorg
Version: 0.9-alpha
Author URI: http://wordpress.org/
*/
/***
* Debug Functions
*
* When logged in as a super admin, these functions will run to provide
* debugging information when specific super admin menu items are selected.
*
* They are not used when a regular user is logged in.
*/
class Debug_Bar {
var $panels = array();
function Debug_Bar() {
if ( defined('DOING_AJAX') && DOING_AJAX )
add_action( 'admin_init', array( &$this, 'init_ajax' ) );
add_action( 'admin_bar_init', array( &$this, 'init' ) );
}
function init() {
if ( ! is_super_admin() || ! is_admin_bar_showing() || $this->is_wp_login() )
return;
add_action( 'admin_bar_menu', array( &$this, 'admin_bar_menu' ), 1000 );
add_action( 'admin_footer', array( &$this, 'render' ), 1000 );
add_action( 'wp_footer', array( &$this, 'render' ), 1000 );
add_action( 'wp_head', array( &$this, 'ensure_ajaxurl' ), 1 );
add_filter( 'body_class', array( &$this, 'body_class' ) );
add_filter( 'admin_body_class', array( &$this, 'body_class' ) );
$this->requirements();
$this->enqueue();
$this->init_panels();
}
/* Are we on the wp-login.php page?
* We can get here while logged in and break the page as the admin bar isn't shown and otherthings the js relies on aren't available.
*/
function is_wp_login() {
return 'wp-login.php' == basename( $_SERVER['SCRIPT_NAME'] );
}
function init_ajax() {
if ( ! is_super_admin() )
return;
$this->requirements();
$this->init_panels();
}
function requirements() {
$path = plugin_dir_path( __FILE__ );
require_once( $path . '/compat.php' );
$recs = array( 'panel', 'php', 'queries', 'request', 'wp-query', 'object-cache', 'deprecated', 'js' );
foreach ( $recs as $rec )
require_once "$path/panels/class-debug-bar-$rec.php";
}
function enqueue() {
$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '.dev' : '';
wp_enqueue_style( 'debug-bar', plugins_url( "css/debug-bar$suffix.css", __FILE__ ), array(), '20120317' );
wp_enqueue_script( 'debug-bar', plugins_url( "js/debug-bar$suffix.js", __FILE__ ), array( 'jquery' ), '20121228.2', true );
do_action('debug_bar_enqueue_scripts');
}
function init_panels() {
$classes = array(
'Debug_Bar_PHP',
'Debug_Bar_Queries',
'Debug_Bar_WP_Query',
'Debug_Bar_Deprecated',
'Debug_Bar_Request',
'Debug_Bar_Object_Cache',
'Debug_Bar_JS',
);
foreach ( $classes as $class ) {
$this->panels[] = new $class;
}
$this->panels = apply_filters( 'debug_bar_panels', $this->panels );
}
function ensure_ajaxurl() { ?>
<script type="text/javascript">
//<![CDATA[
var ajaxurl = '<?php echo admin_url('admin-ajax.php'); ?>';
//]]>
</script>
<?php
}
// memory_get_peak_usage is PHP >= 5.2.0 only
function safe_memory_get_peak_usage() {
if ( function_exists( 'memory_get_peak_usage' ) ) {
$usage = memory_get_peak_usage();
} else {
$usage = memory_get_usage();
}
return $usage;
}
function admin_bar_menu() {
global $wp_admin_bar;
$classes = apply_filters( 'debug_bar_classes', array() );
$classes = implode( " ", $classes );
/* Add the main siteadmin menu item */
$wp_admin_bar->add_menu( array(
'id' => 'debug-bar',
'parent' => 'top-secondary',
'title' => apply_filters( 'debug_bar_title', __('Debug', 'debug-bar') ),
'meta' => array( 'class' => $classes ),
) );
// @todo: Uncomment and finish me!
// foreach ( $this->panels as $panel_key => $panel ) {
// if ( ! $panel->is_visible() )
// continue;
//
// $panel_class = get_class( $panel );
//
// $wp_admin_bar->add_menu( array(
// 'parent' => 'debug-bar',
// 'id' => "debug-bar-$panel_class",
// 'title' => $panel->title(),
// ) );
// }
}
function body_class( $classes ) {
if ( is_array( $classes ) )
$classes[] = 'debug-bar-maximized';
else
$classes .= ' debug-bar-maximized ';
if ( isset( $_GET['debug-bar'] ) ) {
if ( is_array( $classes ) )
$classes[] = 'debug-bar-visible';
else
$classes .= ' debug-bar-visible ';
}
return $classes;
}
function render() {
global $wpdb;
if ( empty( $this->panels ) )
return;
foreach ( $this->panels as $panel_key => $panel ) {
$panel->prerender();
if ( ! $panel->is_visible() )
unset( $this->panels[ $panel_key ] );
}
?>
<div id='querylist'>
<div id="debug-bar-actions">
<span class="maximize">+</span>
<span class="restore">–</span>
<span class="close">×</span>
</div>
<div id='debug-bar-info'>
<div id="debug-status">
<?php //@todo: Add a links to information about WP_DEBUG, PHP version, MySQL version, and Peak Memory.
$statuses = array();
$statuses[] = array( 'site', php_uname( 'n' ), sprintf( __( '#%d', 'debug-bar' ), get_current_blog_id() ) );
$statuses[] = array( 'php', __('PHP', 'debug-bar'), phpversion() );
$db_title = empty( $wpdb->is_mysql ) ? __( 'DB', 'debug-bar' ) : 'MySQL';
$statuses[] = array( 'db', $db_title, $wpdb->db_version() );
$statuses[] = array( 'memory', __('Memory Usage', 'debug-bar'), sprintf( __('%s bytes', 'debug-bar'), number_format_i18n( $this->safe_memory_get_peak_usage() ) ) );
if ( ! WP_DEBUG )
$statuses[] = array( 'warning', __('Please Enable', 'debug-bar'), 'WP_DEBUG' );
$statuses = apply_filters( 'debug_bar_statuses', $statuses );
foreach ( $statuses as $status ):
list( $slug, $title, $data ) = $status;
?><div id='debug-status-<?php echo esc_attr( $slug ); ?>' class='debug-status'>
<div class='debug-status-title'><?php echo $title; ?></div>
<?php if ( ! empty( $data ) ): ?>
<div class='debug-status-data'><?php echo $data; ?></div>
<?php endif; ?>
</div><?php
endforeach;
?>
</div>
</div>
<div id='debug-bar-menu'>
<ul id="debug-menu-links">
<?php
$current = ' current';
foreach ( $this->panels as $panel ) :
$class = get_class( $panel );
?>
<li><a
id="debug-menu-link-<?php echo esc_attr( $class ); ?>"
class="debug-menu-link<?php echo $current; ?>"
href="#debug-menu-target-<?php echo esc_attr( $class ); ?>">
<?php
// Not escaping html here, so panels can use html in the title.
echo $panel->title();
?>
</a></li>
<?php
$current = '';
endforeach; ?>
</ul>
</div>
<div id="debug-menu-targets"><?php
$current = ' style="display: block"';
foreach ( $this->panels as $panel ) :
$class = get_class( $panel ); ?>
<div id="debug-menu-target-<?php echo $class; ?>" class="debug-menu-target" <?php echo $current; ?>>
<?php $panel->render(); ?>
</div>
<?php
$current = '';
endforeach;
?>
</div>
<?php do_action( 'debug_bar' ); ?>
</div>
<?php
}
}
$GLOBALS['debug_bar'] = new Debug_Bar();