I\'m trying to reuse query params using Url helper in a view. This is my current url:
http://localhost/events/index?__orderby=name&__order=asc
You could use something like this, but the query parameters arent reused in my case.
$this->url(
'page/query',
array(),
array(
'query' => array(
'name'=>'my-test-page',
'format' => 'rss',
'limit' => 10,
)
),
true
);
So if you want to reuse query parameters you coul merge them with your new ones and then add all of them to the query array (3 parameter).