1. Go to this page and download the library: Download pfaciana/wp-debug-bar library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
pfaciana / wp-debug-bar example snippets
/**
* Plugin Name: YOUR PLUGIN NAME
*/
// This example will allow visibility to ALL Panels to ALL site visitors,
// excepts Panels titled `Environment` or `Globals`
// $panel is the Panel class object
add_filter( 'debug_bar_panel_capability', function ( string $capability, string $title, Panel $panel ) {
if ( !in_array( $title, [ 'Environment', 'Globals' ] ) ) {
return ''; // Setting a $capability to '', '*', 'any' or 'all' shows to panel to all site visitors
}
return $capability;
}, 10, 3 );
// Properties
Kint::$expanded = true;
Kint::$enabled_mode = FALSE;
Kint::$max_depth = 3;
// Methods
Kint::dump($_SERVER); // Dump any number of variables
Kint::trace(); // Dump a backtrace
// Shorthand
d($_SERVER); // d() is a shortcut for Kint::dump()
t(); // t() is a shortcut for Kint::trace()
// `console::log` is same as `Kint::dump`, accepts unlimited arguments and dumps them to the Panel
// Each call to log groups all the arguments together in one section
// Returns the value of the first argument passed
console::log( ...$args ) : mixed
// `console::trace` is same as `Kint::trace`, accept the same signature as php's debug_backtrace
// If $options is true, then response is debug_backtrace() with the default arguments
// If $options and/or $limit is defined, then the response is debug_backtrace($options, $limit)
// Returns the backtrace array, or NULL if no arguments are defined
// Alias: console::backtrace()
console::trace( true|int $options = NULL, int $limit = 0 ) : null|array
// These methods work the same as `console::log` except they add a relevant icon and header text with the level
// Returns the $message prefixed with the message level
console::emergency( string $message, ...$context ) : string // Header flashes red quickly
console::critical( string $message, ...$context ) : string // Header flashes red
console::alert( string $message, ...$context ) : string // Header flashes red slowly
console::error( string $message, ...$context ) : string // Header is red
console::warn( string $message, ...$context ) : string // Header is orange
console::notice( string $message, ...$context ) : string // Header is yellow
console::debug( string $message, ...$context ) : string // Header is green
console::info( string $message, ...$context ) : string // Header is white
// Usage
console.warn("This is a Warning!")
// Outputs
// `⚠ Warning: This is a Warning!` (in orange color)
// Checks a condition and displays pass or fail to the panel
// $message is an optional text to display after pass/fail header
// Returns the result of the $condition
console::test( bool $condition, string $message, ...$context ) : bool
// Checks a condition and displays it to the panel ONLY if it fails
// $error_message is an optional text to display after fail header
// Returns the result of the $condition
console::assert( bool $condition, string $error_message, ...$context ) : bool
// Usage
console::test( $large_number > $small_number, 'Checking to make sure large > small', $large_number, $small_number);
console::assert( $large_number > $small_number, 'Large is not greater than small', $large_number, $small_number);
// Start a Timer
// $label is the name of the timer group, defaults to 'default'
// Alias: console::timeStart()
console::time( string $label = 'default', ...$context ) : float
// Display the current duration of a Timer
// $label is the name of the timer group, defaults to 'default'
// Returns the number of seconds the timer has been running
console::timeLog( string $label = 'default', ...$context ) : float
// Stop a Timer
// $label is the name of the timer group, defaults to 'default'
// Returns the duration of the timer, in seconds
console::timeEnd( string $label = 'default', ...$context ) : float
// Usage
console::time();
// some code to time
console::timeEnd();
// Start a Counter
// $label is the name of the counter group, defaults to 'default'
// Return the number of times the counter group has been called
console::count( string $label = 'default', ...$context ) : int
// Reset a Counter to zero
// $label is the name of the counter group, defaults to 'default'
console::countReset( string $label = 'default', ...$context ) : int
// Usage
console::count(); // do something...
console::count(); // do something...
console::countReset(); // start over...
console::count(); // do something...
// Display and return the current memory being used (in MB)
console::memory( ...$context ) : float
// Display and return the peak memory usage (in MB)
console::memoryPeak( ...$context ) : float
// Display and return (as an array) both the current memory used the peak memory usage (in MB)
console::memoryBoth( ...$context ) : float[]
// Reset the peak memory usage, if `memory_reset_peak_usage` function exists in php
console::memoryReset( ...$context ) : float
// In some third party code you might see...
echo some_function();
// You change that to...
do_action( 'debugbar/watch', (string) $label );
echo some_function();
do_action( 'debugbar/unwatch', (string) $label );
// NOTE: $label is the tracker label and used to identify and filter rows in the Panel UI.
// $label is arbitrary and should be a string.
// In this example, we'll only show tracker hooks where the filter's return value is a non-empty string
// $show is the boolean value to show or hide the row for that specific tracker
// $hook is the array of data for that specific tracker
add_filter( 'debugbar/watch/filter', function ( bool $show, array $hook ) {
if ( !empty( $hook['value'] ) && $hook['value']['type'] === 'string' ) {
return $show;
}
return FALSE;
}, 10, 2 );
// Here is an example of a $hook variable passed as the second argument
// This matches what you see in the Hooks Panel table
$hook = [
// Array of tracker names watching this hook
'trackers' => ['watcher #1', 'watcher #2'],
// Hook Type
'type' => 'filter', // or action
// Name of the Hook
'name' => 'hook/name/called',
// This is the value returned after the filter is complete (the Output column in the UI)
'value' => [ // An $arg array
'text' => NULL, // A representation of the return value (what you see in the Hook Table)
'type' => 'null', // The variable type of the returned value
],
// This is the initial value of the variable to be filtered
'input' => [ // An $arg array
'type' => 'same', // the filtered value did not change as a result of the filter
],
// This is additional context sent to the variable to be filtered (argument 2+ in the hook)
'args' => [ // An array of $arg arrays
[
'text' => 'some text',
'type' => 'string',
],
[
'text' => FALSE,
'type' => 'boolean',
],
],
// How many milliseconds it took to complete the code being tracked
'duration' => 0.15,
// How many millisecond since the script was started
'time' => 191.01,
// Name of the parent Hook (if applicable)
'parent' => 'parent/hook/name',
// An array of $file arrays
'subscribers' => [
[
'text' => 'Plugin: Some Plugin >
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.