/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/debug_kit/src
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/debug_kit/src/DebugPanel.php (2661B)
plugin) {
return $this->plugin . '.' . Inflector::underscore($name);
}
return Inflector::underscore($name);
}
/**
* Get the data a panel has collected.
*
* @return array
*/
public function data()
{
return $this->_data;
}
/**
* Get the summary data for a panel.
*
* This data is displayed in the toolbar even when the panel is collapsed.
*
* @return string
*/
public function summary()
{
return '';
}
/**
* Initialize hook method.
*
* @return void
*/
public function initialize()
{
}
/**
* Shutdown callback
*
* @param \Cake\Event\EventInterface $event The event.
* @return void
*/
public function shutdown(EventInterface $event)
{
}
/**
* Get the events this panels supports.
*
* @return array
*/
public function implementedEvents(): array
{
return [
'Controller.shutdown' => 'shutdown',
];
}
}