Slide 53
Slide 53 text
class Zend_Events extends Zend_Controller_Plugin_Abstract
{
...
public function dispatchLoopStartup($request)
{
$this->dispatcher->dispatch(
'zf.request', $this->createEvent($request)
);
}
public function preDispatch($request)
{
$this->dispatcher->dispatch(
'zf.controller', $this->createEvent($request)
);
}
public function dispatchLoopShutdown()
{
$this->dispatcher->dispatch(
'zf.response', $this->createEvent()
);
}
...
Sunday, 10 June 2012