$this->uri->segment(n); // n=1 for controller, n=2 for method, etc
//-------------------------------------
//! Get Controller Name
//-------------------------------------
$this->router->fetch_class();
//-------------------------------------
//! Get Method Name
//-------------------------------------
$this->router->fetch_method();
//-------------------------------------
//! Get Module Name in HMVC
//-------------------------------------
$this->router->fetch_module();