Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Why do you want to do that in one route? Routes were invented for separating different requests to different actions. – zerkms Dec 13 '10 at 6:59
@zerkms They seem related enough to go into one route. – alex Dec 13 '10 at 7:08
@alex: don't agree. If you have different defaults depending 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
@zerkms What about <controller>/<action> ? :P – alex Dec 13 '10 at 8:47
@alex: what about them? – zerkms Dec 13 '10 at 11:09
show 1 more comment

2 Answers

  1. Check product param in action_get() method and call action_index() (or other) if empty.
  2. Read this topic about your unusual error.
share|improve this answer

Overload the action in the Controller::before() method, like so:

if ($this->request->param('product'))
{
    $this->request->action = 'get';
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.