Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 88
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 215
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 218
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 219
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 220
> 16);
if (!$value) {
//redirect('Login_controller');
} else {
return $value;
}
}
}
function index() {
$this->load->view('includes/header_admin');
$this->load->view('pages/company');
$this->load->view('includes/footer');
}
function category() {
$this->load->view('includes/header_admin');
$this->load->view('pages/category');
$this->load->view('includes/footer');
}
function view_category() {
$this->load->view('includes/header_admin');
$this->load->view('pages/view_category');
$this->load->view('includes/footer');
}
function registerCompany() {
$this->load->view('includes/header');
$this->load->view('pages/registerCompany');
$this->load->view('includes/footer');
}
function theme() {
$data['query_theme'] = $this->HrmPosts_model->get_theme();
$data['query_theme_active'] = $this->HrmPosts_model->get_theme_selected();
$this->load->view('includes/header', $data);
$this->load->view('pages/theme');
$this->load->view('includes/footer');
}
function registerEmployee() {
$data['query_dep'] = $this->HrmPosts_model->get_all_department();
$data['query_title'] = $this->HrmPosts_model->get_all_title();
$this->load->view('includes/header',$data);
$this->load->view('pages/registerEmployee');
$this->load->view('includes/footer');
}
function registerDepartment() {
$this->load->view('includes/header');
$this->load->view('pages/registerDepartment');
$this->load->view('includes/footer');
}
function registerTitle() {
$this->load->view('includes/header');
$this->load->view('pages/registerTitles');
$this->load->view('includes/footer');
}
function registerSalutation() {
$this->load->view('includes/header');
$this->load->view('pages/registerSalutation');
$this->load->view('includes/footer');
}
function registerLeave() {
$this->load->view('includes/header');
$this->load->view('pages/registerLeave');
$this->load->view('includes/footer');
}
function addLeave() {
$data['query_employees'] = $this->HrmPosts_model->get_all_employees();
$this->load->view('includes/header', $data);
$this->load->view('pages/addLeave');
$this->load->view('includes/footer');
}
function employeeList() {
$data['query_employees'] = $this->HrmPosts_model->get_all_employees();
$this->load->view('includes/header', $data);
$this->load->view('pages/employeeList');
$this->load->view('includes/footer_form');
}
function addEmployeeLeave() {
$id = numhash($this->uri->segment(3, 0));
$data['query_employee'] = $this->HrmPosts_model->get_one_employee($id);
$data['query_leave_types'] = $this->HrmPosts_model->get_leave_types();
$this->load->view('includes/header', $data);
$this->load->view('pages/addEmployeeLeave');
$this->load->view('includes/footer');
}
function testcodes() {
$this->load->view('includes/header');
$this->load->view('pages/testcodes');
$this->load->view('includes/footer');
}
}