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
|
<?php declare(strict_types = 1); /** * 'Debug Bar' output for HTML pages. * * @package query-monitor */
if ( ! defined( 'ABSPATH' ) ) { exit; }
class QM_Output_Html_Debug_Bar extends QM_Output_Html {
/** * Collector instance. * * @var QM_Collector_Debug_Bar Collector. */ protected $collector;
public function __construct( QM_Collector $collector ) { parent::__construct( $collector ); add_filter( 'qm/output/menus', array( $this, 'admin_menu' ), 200 ); }
/** * @return string */ public function name() { /** @var string */ return $this->collector->get_panel()->title(); }
/** * @return void */ public function output() { $class = get_class( $this->collector->get_panel() );
if ( ! $class ) { return; }
$target = sanitize_html_class( $class );
$this->before_debug_bar_output();
echo '<div id="debug-menu-target-' . esc_attr( $target ) . '" class="debug-menu-target qm-debug-bar-output">';
ob_start(); $this->collector->render(); $panel = (string) ob_get_clean();
$panel = str_replace( array( '<h4', '<h3', '<h2', '<h1', '</h4>', '</h3>', '</h2>', '</h1>', ), array( '<h5', '<h4', '<h3', '<h2', '</h5>', '</h4>', '</h3>', '</h2>', ), $panel );
echo $panel; // phpcs:ignore
echo '</div>';
$this->after_debug_bar_output(); }
}
/** * @param array<string, QM_Output> $output * @param QM_Collectors $collectors * @return array<string, QM_Output> */ function register_qm_output_html_debug_bar( array $output, QM_Collectors $collectors ) { global $debug_bar;
if ( empty( $debug_bar ) ) { return $output; }
foreach ( $debug_bar->panels as $panel ) { $class = get_class( $panel );
if ( ! $class ) { continue; }
$panel_id = strtolower( sanitize_html_class( $class ) ); /** @var QM_Collector_Debug_Bar|null */ $collector = QM_Collectors::get( "debug_bar_{$panel_id}" );
if ( $collector && $collector->is_visible() ) { $output[ "debug_bar_{$panel_id}" ] = new QM_Output_Html_Debug_Bar( $collector ); } }
return $output; }
add_filter( 'qm/outputter/html', 'register_qm_output_html_debug_bar', 200, 2 );
|