mirror of
https://github.com/felixfoertsch/wordpress-dev-env.git
synced 2026-04-18 23:38:37 +02:00
Initial commit
This commit is contained in:
65
wordpress_plugins/query-monitor/classes/debug_bar.php
Normal file
65
wordpress_plugins/query-monitor/classes/debug_bar.php
Normal file
@@ -0,0 +1,65 @@
|
||||
<?php
|
||||
/**
|
||||
* Mock 'Debug Bar' plugin class.
|
||||
*
|
||||
* @package query-monitor
|
||||
*/
|
||||
|
||||
class Debug_Bar {
|
||||
public $panels = array();
|
||||
|
||||
public function __construct() {
|
||||
add_action( 'wp_head', array( $this, 'ensure_ajaxurl' ), 1 );
|
||||
|
||||
$this->enqueue();
|
||||
$this->init_panels();
|
||||
}
|
||||
|
||||
public function enqueue() {
|
||||
// phpcs:ignore WordPress.WP.EnqueuedResourceParameters.MissingVersion
|
||||
wp_register_style( 'debug-bar', false, array(
|
||||
'query-monitor',
|
||||
) );
|
||||
// phpcs:ignore WordPress.WP.EnqueuedResourceParameters.MissingVersion
|
||||
wp_register_script( 'debug-bar', false, array(
|
||||
'query-monitor',
|
||||
) );
|
||||
|
||||
/**
|
||||
* Fires after scripts have been enqueued. This mimics the same action fired in the Debug Bar plugin.
|
||||
*
|
||||
* @since 2.7.0
|
||||
*/
|
||||
do_action( 'debug_bar_enqueue_scripts' );
|
||||
}
|
||||
|
||||
public function init_panels() {
|
||||
require_once 'debug_bar_panel.php';
|
||||
|
||||
/**
|
||||
* Filters the debug bar panel list. This mimics the same filter called in the Debug Bar plugin.
|
||||
*
|
||||
* @since 2.7.0
|
||||
*
|
||||
* @param Debug_Bar_Panel[] $panels Array of Debug Bar panel instances.
|
||||
*/
|
||||
$this->panels = apply_filters( 'debug_bar_panels', array() );
|
||||
}
|
||||
|
||||
public function ensure_ajaxurl() {
|
||||
$dispatcher = QM_Dispatchers::get( 'html' );
|
||||
|
||||
if ( $this->panels && $dispatcher::user_can_view() ) {
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
var ajaxurl = '<?php echo esc_url( admin_url( 'admin-ajax.php' ) ); ?>';
|
||||
</script>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
|
||||
public function Debug_Bar() {
|
||||
self::__construct();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user