PHP Class DebugKit\DebugPanel

Inheritance: implements Cake\Event\EventListenerInterface
Datei anzeigen Open project: cakephp/debug_kit

Public Properties

Property Type Description
$plugin string Defines which plugin this panel is from so the element can be located.

Protected Properties

Property Type Description
$_data array The data collected about a given request.

Public Methods

Method Description
data ( ) : array Get the data a panel has collected.
elementName ( ) : string Get the element name for the panel.
implementedEvents ( ) : array Get the events this panels supports.
initialize ( ) : void Initialize hook method.
shutdown ( Cake\Event\Event $event ) : void Shutdown callback
summary ( ) : string Get the summary data for a panel.
title ( ) : string Get the title for the panel.

Method Details

data() public method

Get the data a panel has collected.
public data ( ) : array
return array

elementName() public method

Get the element name for the panel.
public elementName ( ) : string
return string

implementedEvents() public method

Get the events this panels supports.
public implementedEvents ( ) : array
return array

initialize() public method

Initialize hook method.
public initialize ( ) : void
return void

shutdown() public method

Shutdown callback
public shutdown ( Cake\Event\Event $event ) : void
$event Cake\Event\Event The event.
return void

summary() public method

This data is displayed in the toolbar even when the panel is collapsed.
public summary ( ) : string
return string

title() public method

Get the title for the panel.
public title ( ) : string
return string

Property Details

$_data protected_oe property

The data collected about a given request.
protected array $_data
return array

$plugin public_oe property

Defines which plugin this panel is from so the element can be located.
public string $plugin
return string