In Kohana 2 you could easily get that information like this:
echo router::$controller;
echo router::$method;
echo router::$arguments[0-x];
Any idea how that works in Kohana 3?
Thanks in advance!
|
feedback
|
|
From inside a controller:
Unlike K2 arguments in K3 are accessed via kays which you define in your routes. Take for example this url:
To access the "id" argument you'd call
You can't access the controller / action arguments from the param() method. Note, you can also use For more information see the K3 guide | |||||||||
feedback
|
|
For those using Kohana >= 3.1, it might be useful to notice that some properties of the Request object have been converted to methods. E.g. For more information, I'd like to reference to the Kohana upgrade guide on http://kohanaframework.org/3.1/guide/kohana/upgrading | |||
|
feedback
|
|
Updated answer for Kohana 3.2, from the user guide:
| |||
|
feedback
|