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.
assemble(
array $userParams, mixed $name
=
null, bool $reset
=
false, bool $encode
=
true
)
:
stringGenerates a URL path that can be used in URL creation, redirection, etc.
May be passed user params to override ones from URI, Request or even defaults. If passed parameter has a value of null, it's URL variable will be reset to default.
If null is passed as a route name assemble will use the current Route or 'default' if current is not yet set.
Reset is used to signal that all parameters should be reset to it's defaults. Ignoring all URL specified values. User specified params still get precedence.
Encode tells to url encode resulting path parts.
DetailsclearParams(
null|string|array $name
=
null
)
:
Zend_Controller_Router_InterfaceClear 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.
DetailsgetFrontController(
)
:
Zend_Controller_FrontRetrieve Front Controller
DetailsgetParam(
string $name
)
:
mixedRetrieve a single parameter from the controller parameter stack
DetailsgetParams(
)
:
arrayRetrieve the parameters to pass to helper object constructors
Detailsroute(
$dispatcher
)
:
Zend_Controller_Request_Abstract|booleanProcesses a request and sets its controller and action. If no route was possible, an exception is thrown.
DetailssetFrontController(
Zend_Controller_Front $controller
)
:
Zend_Controller_Router_InterfaceSet Front Controller
DetailssetParam(
string $name, $value
)
:
Zend_Controller_Router_InterfaceAdd or modify a parameter with which to instantiate any helper objects
DetailssetParams(
array $params
)
:
Zend_Controller_Router_InterfaceSet an array of a parameters to pass to helper object constructors
Details