Я думаю, что было бы хорошо иметь учебник по ZFDebug в SO.
Мне было интересно, можно ли использовать ZFDebug toolbar
с ZF 1.10+
(на самом деле я использую 1.11.2
).У меня есть следующий код в моей начальной загрузке, но ничего не происходит:
protected function _initZFDebug()
{
$autoloader = Zend_Loader_Autoloader::getInstance();
$autoloader->registerNamespace('ZFDebug');
if ('development' == APPLICATION_ENV) {
$options = array(
'jquery_path' => 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js',
'plugins' => array('Variables',
'Html',
'Database' => array(),
'File' => array('basePath' => APPLICATION_PATH . '/application'),
'Memory',
'Time',
'Registry',
//'Cache' => array('backend' => $cache->getBackend()),
'Exception')
);
$debug = new ZFDebug_Controller_Plugin_Debug($options);
$this->bootstrap('frontController');
$frontController = $this->getResource('frontController');
$frontController->registerPlugin($debug);
}
}