Skip to content

vahid-sohrabloo/ZFirebug

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

This project extent from ZFDebug (http://code.google.com/p/zfdebug/);
You must first install firebug (http://getfirebug.com/) in your firefox
Then install firephp (http://www.firephp.org/) in your firefox
Then copy "ZFirebug" Folder in your library path.

Then define initilize method in your bootstrap file

protected function _initZFirebug()
	{
		$autoloader = Zend_Loader_Autoloader::getInstance();
		$autoloader->registerNamespace('ZFirebug');

		$options = array(
        'plugins' => array("Variables",
							'File',
							'Html',
							'Memory', 
							'Time', 
							'Registry', 
							'Auth')
		);

		$debug = new ZFirebug_Controller_Plugin_Debug($options);

		$this->bootstrap('frontController');
		$frontController = $this->getResource('frontController');
		$frontController->registerPlugin($debug);

	}

About

Debuger for Zend Framework with Firebug and Firephp

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages