Kohana: why won't this route generate fully?

337 Views Asked by At

I have the following route in my bootstrap:

Route::set('cycleadmin', '(<lang>/)cycleadmin(/<model>(/<action>(/<id>)))', array(
    'lang' => $lang_options,
    'model' => '[a-z_]{0,}',
    'action' => '[a-z_]+',
    'id' => '\d+',
))->defaults(array(
    'controller' => 'cycleadmin',
    'lang' => DEFAULT_LANG,
    'model' => 'cycle',
    'action' => NULL,
));

Then I have the following uri request to generate the route:

echo Route::get('cycleadmin')->uri(array('action' => 'add'));

But this ends up only returning: /cycleadmin

I'm using Kohana 3.1 (v3.1.1.1). This worked perfectly in Kohana 3.0.9.

What am I missing?

2

There are 2 best solutions below

3
On BEST ANSWER

Try to also set <model> . Does it work?

Regards

Sorin

0
On

As of 3.1, the route::get()-method doesn't fill in the defaults - you have to manually specify every parameter. Don't ask me why, but it is intended behaviour (source: the official forums).