Sunday, February 28, 2010

problem with reversre routing and pagination

i have a problem with using reverse routing and pagination. i have
such routs defined:

Router::connect('/wiadomosci/*', array('controller' =>
'news','action'=>'viewall',1));
Router::connect('/porady/*', array('controller' =>
'news','action'=>'viewall',3));
Router::connect('/wwolnymczasie/*', array('controller' =>
'news','action'=>'viewall',4));
Router::connect('/skroty/*', array('controller' =>
'news','action'=>'viewall',6));

And call (which is taken from paginator helper)
$url=array
(
"page" => 3,
"controller" => "news",
"action" => "viewall",
6,
);
echo Router::url($url);

returns
/express/porady/6/page:3

when I want to have
/express/skroty/page:3

How i should define routings to make this work?

Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions.

You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php?hl=en

No comments: