Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
array $_plugins = 'array'Array of instance of objects extending Zend_Controller_Plugin_Abstract
DetailsdispatchLoopShutdown(
)
:
voidCalled before Zend_Controller_Front exits its dispatch loop.
DetailsdispatchLoopStartup(
Zend_Controller_Request_Abstract $request
)
:
voidCalled before Zend_Controller_Front enters its dispatch loop.
During the dispatch loop, Zend_Controller_Front keeps a Zend_Controller_Request_Abstract object, and uses Zend_Controller_Dispatcher to dispatch the Zend_Controller_Request_Abstract object to controllers/actions.
DetailsgetPlugin(
string $class
)
:
false|Zend_Controller_Plugin_Abstract|arrayRetrieve a plugin or plugins by class
DetailsgetPlugins(
)
:
arrayRetrieve all plugins
DetailsgetRequest(
)
:
Zend_Controller_Request_AbstractGet request object
DetailsgetResponse(
)
:
Zend_Controller_Response_AbstractGet response object
DetailshasPlugin(
string $class
)
:
boolIs a plugin of a particular class registered?
DetailspostDispatch(
Zend_Controller_Request_Abstract $request
)
:
voidCalled after an action is dispatched by Zend_Controller_Dispatcher.
DetailspreDispatch(
Zend_Controller_Request_Abstract $request
)
:
voidCalled before an action is dispatched by Zend_Controller_Dispatcher.
DetailsregisterPlugin(
Zend_Controller_Plugin_Abstract $plugin, int $stackIndex
=
null
)
:
Zend_Controller_Plugin_BrokerRegister a plugin.
DetailsrouteShutdown(
Zend_Controller_Request_Abstract $request
)
:
voidCalled before Zend_Controller_Front exits its iterations over the route set.
DetailsrouteStartup(
Zend_Controller_Request_Abstract $request
)
:
voidCalled before Zend_Controller_Front begins evaluating the request against its routes.
DetailssetRequest(
Zend_Controller_Request_Abstract $request
)
:
Zend_Controller_Plugin_BrokerSet request object, and register with each plugin
DetailssetResponse(
Zend_Controller_Response_Abstract $response
)
:
Zend_Controller_Plugin_BrokerSet response object
DetailsunregisterPlugin(
string|Zend_Controller_Plugin_Abstract $plugin
)
:
Zend_Controller_Plugin_BrokerUnregister a plugin.
Details