Zend url view helper - keeping existing params in a reversed route - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T02:11:42Zhttp://stackoverflow.com/feeds/question/987859http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/987859/zend-url-view-helper-keeping-existing-params-in-a-reversed-route0Zend url view helper - keeping existing params in a reversed routeCiaran McNulty2009-06-12T17:11:33Z2009-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><?php echo $this->url(array('blog_page'=>3)); ?>
</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' => 'news', 'action' => 'index')
);
</code></pre>
<p>However, when I try an use this route in the view helper:</p>
<pre><code><?php echo $this->url(array('blog_page'=>3), 'newsIndex'); ?>
</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#9896502Answer by jason for Zend url view helper - keeping existing params in a reversed routejason2009-06-13T00:50:54Z2009-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' => 'news', 'action' => 'index', 'news_page' => 1)
);
</code></pre>