Are there any libraries or helpers that can allow me to have a class ControllerCommonDashboard which extends CI_Controller but have the file name just be dashboard.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class ControllerCommonDashboard extends MX_Controller {
}
At the moment I have to make file name same as the class name.
Not sure how to best use these functions to get what I am after
$this->router->fetch_class();
$this->router->fetch_method();
$this->router->fetch_module();