Here is one of my routes...
Route::set('products', 'our-products(/<product>)')
->defaults(array(
'controller' => 'products',
'action' => FALSE
));
By visiting /our-products, you can get to the products index (which will call Controller_Products::action_index()).
I want the route to work as follows: when adding an optional product, it should call a different method, i.e. if /our-products/product-a is requested, instead of calling Controller_Products::action_index(), it calls something like Controller_Products::action_get('product-a').
I realise I could do this easily with two routes, but I'd rather to do it with one.
I also though about checking for the param within action_index(), and calling another method, but that sounded ugly.
I also tried __call() but got this very unusual error...
Fatal error: Class declarations may not be nested in /home/user/public_html/~new/system/classes/date.php on line 3
Is it possible to do what I want? What is the best way?
Thanks
defaultsdepending on the url values - they don't seem to be related to one (it is my personal opinion). – zerkms Dec 13 '10 at 7:31<controller>/<action>? :P – alex Dec 13 '10 at 8:47