/home/desid573/public_html/ims2/application/controllers
Edit: /home/desid573/public_html/ims2/application/controllers/Reports.php (1202B)
* @date 20th Rab. Awwal, 1437AH
* @date 1st Jan, 2016
*/
class Reports extends CI_Controller
{
public function __construct()
{
parent::__construct();
$this->genlib->checkLogin();
$this->genlib->superOnly();
}
/*
********************************************************************************************************************************
********************************************************************************************************************************
********************************************************************************************************************************
********************************************************************************************************************************
********************************************************************************************************************************
*/
public function index()
{
$data['pageContent'] = $this->load->view('reports', '', TRUE);
$data['pageTitle'] = "Reports";
$this->load->view('main', $data);
}
}