Shorten Zend Framework Route Definitions - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T15:03:21Z http://stackoverflow.com/feeds/question/794126 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/794126/shorten-zend-framework-route-definitions 1 Shorten Zend Framework Route Definitions Sebastian Hoitz 2009-04-27T15:46:32Z 2009-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" =&gt; "index", "action" =&gt; "index" ), array("id" =&gt; "\d+") ); self::$frontController-&gt;getRouter()-&gt;addRoute('shortcutOne', $route); $route = new Zend_Controller_Router_Route( ":module/:controller/:id", array("action" =&gt; "index"), array("id" =&gt; "\d+") ); self::$frontController-&gt;getRouter()-&gt;addRoute('shortcutTwo', $route); $route = new Zend_Controller_Router_Route( ":module/:controller/:action/:id", null, array("id" =&gt; "\d+") ); self::$frontController-&gt;getRouter()-&gt;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#824506 0 Answer by Kieran Hall for Shorten Zend Framework Route Definitions Kieran Hall 2009-05-05T11:41:56Z 2009-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>&lt;config&gt; &lt;routes&gt; &lt;shortcutone type="Zend_Controller_Router_Route"&gt; &lt;route&gt;:module/:id&lt;/route&gt; &lt;defaults&gt; &lt;controller&gt;index&lt;/controller&gt; &lt;action&gt;index&lt;/action&gt; &lt;/defaults&gt; &lt;reqs id="\d+"&gt; &lt;/shortcutone&gt; &lt;shortcuttwo type="Zend_Controller_Router_Route"&gt; &lt;route&gt;:module/:controller/:id&lt;/route&gt; &lt;defaults&gt; &lt;controller&gt;index&lt;/controller&gt; &lt;/defaults&gt; &lt;reqs id="\d+"&gt; &lt;/shortcuttwo&gt; &lt;shortcutthree type="Zend_Controller_Router_Route"&gt; &lt;route&gt;:module/:controller/:action/:id&lt;/route&gt; &lt;defaults&gt; &lt;controller&gt;index&lt;/controller&gt; &lt;action&gt;index&lt;/action&gt; &lt;/defaults&gt; &lt;reqs id="\d+"&gt; &lt;/shortcutthree&gt; &lt;/routes&gt; &lt;/config&gt; </code></pre> <p><strong>Bootstrap</strong></p> <pre><code>$config = new Zend_Config_Xml('config.xml'); $router = Zend_Controller_Front::getInstance()-&gt;getRouter(); $router-&gt;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>