ria/application/controllers/reportlistcontroller.php
2022-03-22 15:28:00 +05:30

40 lines
895 B
PHP

<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
require APPPATH . '/libraries/BaseController.php';
/**
* Class : User (UserController)
* User Class to control all user related operations.
* @author : Kishor Mali
* @version : 1.1
* @since : 15 November 2016
*/
class reportlistcontroller extends BaseController
{
/**
* This is default constructor of the class
*/
public function __construct()
{
parent::__construct();
$this->load->model('user_model');
$this->load->library('form_validation');
$this->CompanyName = "RESICO";
$this->isLoggedIn();
}
/**
* This function used to load the first screen of the user
*/
public function index()
{
$this->global['pageTitle'] = 'Reports list ';
$this->loadViews("reportslink", $this->global , NULL);
}
}
?>