Ruby routing based Router.
Located in /Zend/Controller/Router/Rewrite.php (line 40)
Zend_Controller_Router_Abstract | --Zend_Controller_Router_Rewrite
Currently matched route
Array of routes to match against
Whether or not to use default routes
Inherited from Zend_Controller_Router_Abstract
Zend_Controller_Router_Abstract::$_frontController
Zend_Controller_Router_Abstract::$_invokeParams
Create routes out of Zend_Config configuration
Example INI: routes.archive.route = "archive/:year/*" routes.archive.defaults.controller = archive routes.archive.defaults.action = show routes.archive.defaults.year = 2000 routes.archive.reqs.year = "\d+"
routes.news.type = "Zend_Controller_Router_Route_Static" routes.news.route = "news" routes.news.defaults.controller = "news" routes.news.defaults.action = "list"
And finally after you have created a Zend_Config with above ini: $router = new Zend_Controller_Router_Rewrite(); $router->addConfig($config, 'routes');
Add default routes which are used to mimic basic router behaviour
Add route to the route chain
Add routes to the route chain
Retrieve a currently matched route
Retrieve a name of currently matched route
Retrieve a named route
Retrieve an array of routes added to the route chain
Check if named route exists
Remove all standard default routes
Remove a route from the route chain
Find a matching route to the current PATH_INFO and inject returning values to the Request object.
Inherited From Zend_Controller_Router_Abstract
Zend_Controller_Router_Abstract::__construct()
Zend_Controller_Router_Abstract::clearParams()
Zend_Controller_Router_Abstract::getFrontController()
Zend_Controller_Router_Abstract::getParam()
Zend_Controller_Router_Abstract::getParams()
Zend_Controller_Router_Abstract::setFrontController()
Zend_Controller_Router_Abstract::setParam()
Zend_Controller_Router_Abstract::setParams()
Documentation generated on Wed, 21 Feb 2007 11:58:55 -0800 by phpDocumentor 1.3.1