Shorten Zend Framework Route Definitions - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T15:03:21Zhttp://stackoverflow.com/feeds/question/794126http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/794126/shorten-zend-framework-route-definitions1Shorten Zend Framework Route DefinitionsSebastian Hoitz2009-04-27T15:46:32Z2009-05-05T14:46:04Z
<p>Hi! How can I shorten the definition of my custom routes in Zend Framework? I currently have this as definition:</p>
<pre><code>$route = new Zend_Controller_Router_Route(
":module/:id",
array(
"controller" => "index",
"action" => "index"
),
array("id" => "\d+")
);
self::$frontController->getRouter()->addRoute('shortcutOne', $route);
$route = new Zend_Controller_Router_Route(
":module/:controller/:id",
array("action" => "index"),
array("id" => "\d+")
);
self::$frontController->getRouter()->addRoute('shortcutTwo', $route);
$route = new Zend_Controller_Router_Route(
":module/:controller/:action/:id",
null,
array("id" => "\d+")
);
self::$frontController->getRouter()->addRoute('shortcutThree', $route);
</code></pre>
<p>Is there a way to better combine these rules?
And what are your best practices in where to place these? I currently have them in my bootstrap class right after the Front Controller initialization.</p>
http://stackoverflow.com/questions/794126/shorten-zend-framework-route-definitions/824506#8245060Answer by Kieran Hall for Shorten Zend Framework Route DefinitionsKieran Hall2009-05-05T11:41:56Z2009-05-05T14:46:04Z<p>When it comes to setting up routes like this, I use a config file. As a preference, I use XML to store my config data, however these could just as easily be stored in another supported format. I then add the routes from the config, to the router in my bootstrap.</p>
<p><strong>Config:</strong></p>
<pre><code><config>
<routes>
<shortcutone type="Zend_Controller_Router_Route">
<route>:module/:id</route>
<defaults>
<controller>index</controller>
<action>index</action>
</defaults>
<reqs id="\d+">
</shortcutone>
<shortcuttwo type="Zend_Controller_Router_Route">
<route>:module/:controller/:id</route>
<defaults>
<controller>index</controller>
</defaults>
<reqs id="\d+">
</shortcuttwo>
<shortcutthree type="Zend_Controller_Router_Route">
<route>:module/:controller/:action/:id</route>
<defaults>
<controller>index</controller>
<action>index</action>
</defaults>
<reqs id="\d+">
</shortcutthree>
</routes>
</config>
</code></pre>
<p><strong>Bootstrap</strong></p>
<pre><code>$config = new Zend_Config_Xml('config.xml');
$router = Zend_Controller_Front::getInstance()->getRouter();
$router->addConfig($config, 'routes');
</code></pre>
<p>Obviously, there are other options and I'd encourage you to read the <a href="http://framework.zend.com/manual/en/zend.controller.router.html" rel="nofollow">documentation</a> on this, however, this fits for your example.</p>