* @see https://codeigniter.com/user_guide/general/urls.html */ public function index() { $tpl = config_item('admin_template'); $tpl_path = 'admin/' . $tpl . '/'; $data = array( 'tpl_path' => $tpl_path ); $this->load->view($tpl_path . 'index',$data); } }