Controller/Plugin/Abstract.php
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.
- Category
- Zend
- Copyright
- Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
- Package
- Zend_Controller
- Subpackage
- Plugins
- Version
- $Id: Abstract.php 24593 2012-01-05 20:35:02Z matthew $
\Zend_Controller_Plugin_Abstract
- Children
- \Zend_Controller_Plugin_ActionStack
- \Zend_Controller_Plugin_PutHandler
- \Zend_Controller_Plugin_Broker
- \Zend_Controller_Plugin_ErrorHandler
- \Zend_Wildfire_Channel_HttpHeaders
- \Zend_Layout_Controller_Plugin_Layout
- Category
- Zend
- Copyright
- Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
Properties
Methods

dispatchLoopStartup(\Zend_Controller_Request_Abstract $request) : voidCalled before Zend_Controller_Front enters its dispatch loop.
| Name | Type | Description |
|---|---|---|
| $request | \Zend_Controller_Request_Abstract |

getRequest() : \Zend_Controller_Request_AbstractGet request object
| Type | Description |
|---|---|
| \Zend_Controller_Request_Abstract | $request |

getResponse() : \Zend_Controller_Response_AbstractGet response object
| Type | Description |
|---|---|
| \Zend_Controller_Response_Abstract | $response |

postDispatch(\Zend_Controller_Request_Abstract $request) : voidCalled after an action is dispatched by Zend_Controller_Dispatcher.
This callback allows for proxy or filter behavior. By altering the request and resetting its dispatched flag (via setDispatched(false)), a new action may be specified for dispatching.
| Name | Type | Description |
|---|---|---|
| $request | \Zend_Controller_Request_Abstract |

preDispatch(\Zend_Controller_Request_Abstract $request) : voidCalled before an action is dispatched by Zend_Controller_Dispatcher.
This callback allows for proxy or filter behavior. By altering the request and resetting its dispatched flag (via setDispatched(false)), the current action may be skipped.
| Name | Type | Description |
|---|---|---|
| $request | \Zend_Controller_Request_Abstract |

routeShutdown(\Zend_Controller_Request_Abstract $request) : voidCalled after Zend_Controller_Router exits.
Called after Zend_Controller_Front exits from the router.
| Name | Type | Description |
|---|---|---|
| $request | \Zend_Controller_Request_Abstract |

routeStartup(\Zend_Controller_Request_Abstract $request) : voidCalled before Zend_Controller_Front begins evaluating the request against its routes.
| Name | Type | Description |
|---|---|---|
| $request | \Zend_Controller_Request_Abstract |

setRequest(\Zend_Controller_Request_Abstract $request) : \Zend_Controller_Plugin_AbstractSet request object
| Name | Type | Description |
|---|---|---|
| $request | \Zend_Controller_Request_Abstract |
| Type | Description |
|---|---|
| \Zend_Controller_Plugin_Abstract |

setResponse(\Zend_Controller_Response_Abstract $response) : \Zend_Controller_Plugin_AbstractSet response object
| Name | Type | Description |
|---|---|---|
| $response | \Zend_Controller_Response_Abstract |
| Type | Description |
|---|---|
| \Zend_Controller_Plugin_Abstract |