<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/* * *****************Leave.php**********************************
* @product name : University Management System Express
* @type : Class
* @class name : Leave
* @description : Manage Leave.
* @author : Farid Ahmed, Webmaster, BDU
* @url : https://bdu.ac.bd/
* @support : farid0001@bdu.ac.bd
* @copyright : BDU ICT Team
* ********************************************************** */
class Leave extends MY_Controller {
public $data = array();
function __construct() {
parent::__construct();
$this->load->model('Application_Model', 'Leave', true);
}
/*****************Function index**********************************
* @type : Function
* @function name : index
* @description : Load "Decline Leave List" user interface
* listing
* @param : integer value
* @return : null
* ***********************************************************/
public function index($school_id = null) {
check_permission(VIEW);
$this->layout->view('index.html', $this->data);
}
}