Controller/Router/Abstract.php
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.
- Category
- Zend
- Copyright
- Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
- Package
- Zend_Controller
- Subpackage
- Router
- Version
- $Id$
\Zend_Controller_Router_Abstract
Package: Zend_Controller\RouterSimple first implementation of a router, to be replaced
with rules-based URI processor.
- Implements
- Children
- \Zend_Controller_Router_Rewrite
- Category
- Zend
- Copyright
- Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
Constants
Properties
array $_invokeParams = array()
Array of invocation parameters to use when instantiating action
controllers
Default valuearray()
Details- Type
- array
Methods
clearParams( $name = null) : \Zend_Controller_Router
Clear the controller parameter stack
By default, clears all parameters. If a parameter name is given, clears
only that parameter; if an array of parameter names is provided, clears
each.
ParametersReturnsgetParam(string $name) : mixed
Retrieve a single parameter from the controller parameter stack
ParametersName | Type | Description |
---|
$name | string | |
---|
Returns setParam(string $name, mixed $value) : \Zend_Controller_Router
Add or modify a parameter to use when instantiating an action controller
ParametersName | Type | Description |
---|
$name | string | |
---|
$value | mixed | |
---|
Returns setParams(array $params) : \Zend_Controller_Router
Set parameters to pass to action controller constructors
ParametersName | Type | Description |
---|
$params | array | |
---|
Returns