load->model('configuration'); // load language file // $this->lang->load(strtolower($this->router->class)); } /** * Get a specific configuration from the database. * * @param string $config_id The configuration id to get. */ public function detail($config_id) { $configs = $this->configuration->get($config_id); $this->load->view('web/configurations/detail', $configs); } }