\Request::active()->action
// from a controller $this->request->action; // from anywhere else \Request::main()->action; // if you're in a HMVC request and want the action of that request, not the main request // $this->request->action works, but you can access it via \Request::active()->action; // There is also (from memory, you could look in the request class) $this->request->controller; $this->request->module; // and probably more
It looks like you're new here. If you want to get involved, click one of these buttons!