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.
string $_action = ''Action
Detailsstring $_actionKey = 'action'Action key for retrieving action from params
Detailsstring $_controller = ''Controller
Detailsstring $_controllerKey = 'controller'Controller key for retrieving controller from params
Detailsboolean $_dispatched = 'false'Has the action been dispatched?
Detailsstring $_module = ''Module
Detailsstring $_moduleKey = 'module'Module key for retrieving module from params
Detailsarray $_params = 'array'Request parameters
DetailsclearParams(
)
:
Zend_Controller_Request_AbstractUnset all user parameters
DetailsgetActionKey(
)
:
stringRetrieve the action key
DetailsgetActionName(
)
:
stringRetrieve the action name
DetailsgetControllerKey(
)
:
stringRetrieve the controller key
DetailsgetControllerName(
)
:
stringRetrieve the controller name
DetailsgetModuleKey(
)
:
stringRetrieve the module key
DetailsgetModuleName(
)
:
stringRetrieve the module name
DetailsgetParam(
string $key, mixed $default
=
null
)
:
mixedGet an action parameter
DetailsgetParams(
)
:
arrayGet all action parameters
DetailsgetUserParam(
string $key, string $default
=
null
)
:
mixedRetrieve a single user param (i.e, a param specific to the object and not the environment)
DetailsgetUserParams(
)
:
arrayRetrieve only user params (i.e, any param specific to the object and not the environment)
DetailsisDispatched(
)
:
booleanDetermine if the request has been dispatched
DetailssetActionKey(
string $key
)
:
Zend_Controller_Request_AbstractSet the action key
DetailssetActionName(
string $value
)
:
Zend_Controller_Request_AbstractSet the action name
DetailssetControllerKey(
string $key
)
:
Zend_Controller_Request_AbstractSet the controller key
DetailssetControllerName(
string $value
)
:
Zend_Controller_Request_AbstractSet the controller name to use
DetailssetDispatched(
boolean $flag
=
true
)
:
Zend_Controller_Request_AbstractSet flag indicating whether or not request has been dispatched
DetailssetModuleKey(
string $key
)
:
Zend_Controller_Request_AbstractSet the module key
DetailssetModuleName(
string $value
)
:
Zend_Controller_Request_AbstractSet the module name to use
DetailssetParam(
string $key, mixed $value
)
:
Zend_Controller_Request_AbstractSet an action parameter
A $value of null will unset the $key if it exists
DetailssetParams(
array $array
)
:
Zend_Controller_Request_AbstractSet action parameters en masse; does not overwrite
Null values will unset the associated key.
Details