siddharth_application/application/controllers/payslip.php
saravanakumar_kandasami 5f2ca2c853 testing with new mates
2017-04-18 17:48:06 +05:30

55 lines
1.2 KiB
PHP

<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
require APPPATH . '/libraries/BaseController.php';
/**
* Class : Employee (Employee Controller)
* User Class to control all user related operations.
* @author : Gandhimathi
* @version : 1.1
* @since : 07 Apr 2017
*/
class payslip extends BaseController
{
/**
* This is default constructor of the class
*/
public function __construct()
{
parent::__construct();
$this->load->model('employeedetails_model');
$this->isLoggedIn();
}
/**
* This function used to load the first screen of the user
*/
public function index()
{
}
function payslipupload()
{
$this->global['pageTitle'] = 'Siddharth : PaySlip Upload';
$this->loadViews("payslipupload", $this->global, NULL);
}
function payslipgenerate()
{
$this->global['pageTitle'] = 'Siddharth : PaySlip Generator';
$this->loadViews("payslipgenerate", $this->global, NULL);
}
function pageNotFound()
{
$this->global['pageTitle'] = 'CodeInsect : 404 - Page Not Found';
$this->loadViews("404", $this->global, NULL, NULL);
}
}
?>