-
$_actionKey
-
Action key for retrieving action from params
-
$_controllerKey
-
Controller key for retrieving controller from params
-
$_dispatched
-
Has the action been dispatched?
-
$_invokeArgs
-
Array of arguments provided to the constructor, minus the $_request.
-
$_invokeParams
-
Array of invocation parameters to use when instantiating action
-
$_params
-
Request parameters
-
$_request
-
Zend_Controller_Request_Abstract object wrapping the request environment
-
$_response
-
Zend_Controller_Response_Abstract object wrapping the response
-
_forward
-
Forward to another controller/action.
-
_getAllParams
-
Return all parameters in the $_request as an associative array.
-
_getParam
-
Gets a parameter from the $_request. If the parameter does not exist, NULL will be return.
-
_redirect
-
Redirect to another URL
-
__call
-
Proxy for undefined methods. Default behavior is to throw an exception on undefined methods, however this function can be overridden to implement magic (dynamic) actions, or provide run-time dispatching.
-
__construct
-
Constructor
-
__construct
-
Class constructor
-
$_defaultAction
-
Default action name; defaults to 'index'
-
$_defaultController
-
Default controller name; defaults to 'index'
-
$_directory
-
Directory where Zend_Controller_Action files are stored.
-
$_invokeParams
-
Array of invocation parameters to use when instantiating action
-
$_response
-
Response object to pass to action controllers, if any
-
_dispatch
-
If $performDispatch is FALSE, this method will check if a controller file exists. This still doesn't necessarily mean that it can be dispatched in the stricted sense, as file may not contain the controller class or the controller may reject the action.
-
_formatName
-
Formats a string from a URI into a PHP-friendly name. Replaces words separated by "-" or "." with camelCaps, title-cases words separated by underscores, and removes any characters that are not alphanumeric.
-
__construct
-
Constructor
-
$_plugins
-
Array of instance of objects extending Zend_Controller_Plugin_Abstract
-
$_request
-
-
$_response
-
-
$_httpRequest
-
Zend_Http_Request object
-
$_httpRequestReflection
-
ReflectionObject version of $_httpRequest
-
__call
-
Overload and proxy to Zend_Http_Request object
-
__construct
-
Constructor
-
__get
-
Overload and proxy to Zend_Http_Request object
-
__set
-
Overload and proxy to Zend_Http_Request object
-
$_body
-
Body content
-
$_exception
-
Exception
-
$_headers
-
Array of headers. Each header is an array with keys 'name' and 'value'
-
$_renderExceptions
-
Whether or not to render exceptions; off by default
-
__toString
-
Magic __toString functionality
-
__toString
-
Magic __toString functionality
-
$_currentRoute
-
-
$_defaults
-
-
$_invokeParams
-
Array of invocation parameters to use when instantiating action
-
$_invokeParams
-
Array of invocation parameters to use when instantiating action
-
$_params
-
-
$_parts
-
-
$_requirements
-
-
$_routes
-
-
$_staticCount
-
-
$_values
-
-
$_vars
-
-
__construct
-
Constructor
-
__construct
-
-
__construct
-
Prepares the route for mapping by splitting (exploding) it to a corresponding atomic parts. These parts are assigned a position which is later used for matching and preparing values.
-
__construct
-
Constructor
-
getActionKey
-
Retrieve the action key
-
getActionName
-
Retrieve the action name
-
getControllerDirectory
-
Convenience method, passthru to Zend_Controller_Dispatcher::getControllerDirectory()
-
getControllerKey
-
Retrieve the controller key
-
getControllerName
-
Retrieve the controller name
-
getDefaultAction
-
Retrieve the default action (unformatted string)
-
getDefaultController
-
Retrieve the default controller (unformatted string)
-
getDispatcher
-
Return the dispatcher object.
-
getInvokeArgs
-
Return the array of constructor arguments (minus the Request object)
-
getParam
-
Get an action parameter
-
getParams
-
Get all action parameters
-
getParams
-
Retrieve action controller instantiation parameters
-
getRequest
-
Return the request object.
-
getRequest
-
Return the Request object
-
getResponse
-
Return the response object.
-
getResponse
-
Return the Response object
-
getRouter
-
Return the router object.
-
getControllerDirectory
-
Return the currently set directory for Zend_Controller_Action class lookup
-
getDefaultAction
-
Retrieve the default action name (minus formatting)
-
getDefaultAction
-
Retrive the default action name (minus formatting)
-
getDefaultController
-
Retrive the default controller name (minus formatting)
-
getDefaultController
-
Retrieve the default controller name (minus formatting)
-
getParams
-
Retrieve the parameters to pass to the Action Controller constructor
-
getParams
-
Retrieve action controller instantiation parameters
-
getResponse
-
Retrieve the response object, if any
-
getResponse
-
Return the registered response object
-
getRequest
-
Get request object
-
getRequest
-
Get request object
-
getResponse
-
Get response object
-
getResponse
-
Get response object
-
getBody
-
Return the body content
-
getException
-
Retrieve the exception object, if set
-
getHeaders
-
Return array of headers; see $_headers for format
-
getCurrentRoute
-
-
getParams
-
Retrieve action controller instantiation parameters
-
getParams
-
Retrieve action controller instantiation parameters
-
getParams
-
Retrieve the parameters to pass to helper object constructors
-
getRoute
-
-
getRoutes
-
-
setActionKey
-
Set the action key
-
setActionName
-
Set the action name
-
setControllerDirectory
-
Convenience method, passthru to Zend_Controller_Dispatcher::setControllerDirectory()
-
setControllerKey
-
Set the controller key
-
setControllerName
-
Set the controller name to use
-
setDefaultAction
-
Set the default action (unformatted string)
-
setDefaultController
-
Set the default controller (unformatted string)
-
setDispatched
-
Set flag indicating whether or not request has been dispatched
-
setDispatcher
-
Set the dispatcher object. The dispatcher is responsible for taking a Zend_Controller_Dispatcher_Token object, instantiating the controller, and call the action method of the controller.
-
setParam
-
Set an action parameter
-
setParams
-
Set action parameters en masse; does not overwrite
-
setParams
-
Set parameters to pass to action controller constructors
-
setRequest
-
Set request class/object
-
setRequest
-
Set the Request object
-
setResponse
-
Set response class/object
-
setResponse
-
Set the Response object
-
setRouter
-
Set router class/object
-
Stdin.php
-
-
setControllerDirectory
-
Sets the directory where the Zend_Controller_Action class files are stored.
-
setDefaultAction
-
Set default action name (minus formatting)
-
setDefaultAction
-
Set the default action (minus any formatting)
-
setDefaultController
-
Set the default controller (minus any formatting)
-
setDefaultController
-
Set default controller name (minus formatting)
-
setParams
-
Set an array of a parameters to pass to the Action Controller constructor
-
setParams
-
Set parameters to pass to action controller constructors
-
setResponse
-
Set the response object to use, if any
-
setResponse
-
Set response object to pass to action controllers
-
setRequest
-
Set request object, and register with each plugin
-
setRequest
-
Set request object
-
setResponse
-
Set response object
-
setResponse
-
Set response object
-
setBody
-
Set body content
-
setException
-
Register an exception with the response
-
setHeader
-
Set a header
-
setParams
-
Set parameters to pass to action controller constructors
-
setParams
-
Set parameters to pass to action controller constructors
-
setParams
-
Set an array of a parameters to pass to helper object constructors