Zend url view helper - keeping existing params in a reversed route - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T02:11:42Z http://stackoverflow.com/feeds/question/987859 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/987859/zend-url-view-helper-keeping-existing-params-in-a-reversed-route 0 Zend url view helper - keeping existing params in a reversed route Ciaran McNulty 2009-06-12T17:11:33Z 2009-06-13T00:50:54Z <p>At the moment in my ZF project have a URL structure like this:</p> <pre><code>/news/index/news_page/1/blog_page/2 </code></pre> <p>When I generate my pagination I use the URL helper as follows:</p> <pre><code>&lt;?php echo $this-&gt;url(array('blog_page'=&gt;3)); ?&gt; </code></pre> <p>Which generates a URL like this:</p> <pre><code>/news/index/news_page/1/blog_page/3 </code></pre> <p>What I'd like to do is use a custom route to have nicer URLs, something like this:</p> <pre><code>new Zend_Controller_Router_Route( 'news/:news_page/:blog_page', array('controller' =&gt; 'news', 'action' =&gt; 'index') ); </code></pre> <p>However, when I try an use this route in the view helper:</p> <pre><code>&lt;?php echo $this-&gt;url(array('blog_page'=&gt;3), 'newsIndex'); ?&gt; </code></pre> <p>It throws an error because I've not specified news_page in the params.</p> <p>How can I get around this, and tell the url helper to use the 'current' values for these params?</p> http://stackoverflow.com/questions/987859/zend-url-view-helper-keeping-existing-params-in-a-reversed-route/989650#989650 2 Answer by jason for Zend url view helper - keeping existing params in a reversed route jason 2009-06-13T00:50:54Z 2009-06-13T00:50:54Z <p>The url helper will use the an existing parameter if it exists in the current request. It seems as if, in your particular case, the <code>news_page</code> param is not set in the request object. Setting a default value for the <code>news_page</code> parameter in your route should solve your problem.</p> <p>So, your route definition should look something like this:</p> <pre><code>new Zend_Controller_Router_Route( 'news/:news_page/:blog_page', array('controller' =&gt; 'news', 'action' =&gt; 'index', 'news_page' =&gt; 1) ); </code></pre>