Kohana 3 get current controller/action/arguments
Posted
by booze2go
on Stack Overflow
See other posts from Stack Overflow
or by booze2go
Published on 2010-05-04T08:49:32Z
Indexed on
2010/05/04
8:58 UTC
Read the original article
Hit count: 334
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!
© Stack Overflow or respective owner