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?
Try to also set
<model>
. Does it work?Regards
Sorin