38 lines
984 B
PHP
38 lines
984 B
PHP
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
require APPPATH . '/libraries/BaseController.php';
|
|
|
|
/**
|
|
* Class : reportlistcontroller ( Report List Controller)
|
|
* reportlistcontroller Class to control all report related operations.
|
|
* @author : Venba Info Tech
|
|
* @version : 1.1
|
|
* @since : 12 December 2017
|
|
*/
|
|
class reportlistcontroller extends BaseController
|
|
{
|
|
/**
|
|
* Default constructor of the class
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->load->model('user_model');
|
|
$this->load->library('form_validation');
|
|
$this->isLoggedIn();
|
|
}
|
|
|
|
/**
|
|
* Index Page for this controller(default function of the class)
|
|
*/
|
|
public function index()
|
|
{
|
|
//$this->global['pageTitle'] = 'Reports list ';
|
|
$this->global['pageTitle'] = $this->global['CompanyName'].' : Reports list ';
|
|
$this->loadViews("reportslink", $this->global , NULL);
|
|
}
|
|
|
|
}
|
|
|
|
?>
|