%PDF- %PDF-
Direktori : /home/ugotscom/public_html/sterren/application/modules/employees/controllers/ |
Current File : /home/ugotscom/public_html/sterren/application/modules/employees/controllers/employees.php |
<?php class Employees extends CI_Controller{ function __construct(){ parent::__construct(); $this->load->library('datatables'); //load library ignited-dataTable $this->load->model('emp_model'); //load model crud_model } function index(){ $data['content']='emp_view'; $this->load->view('common/layout',$data); $this->load->view('emp_view'); } function get_product_json() { //get product data and encode to be JSON object header('Content-Type: application/json'); echo $this->emp_model->get_all_product(); } function save(){ //insert record method $this->emp_model->insert_product(); redirect('employees'); } function update(){ //update record method $this->emp_model->update_product(); redirect('employees'); } function delete(){ //delete record method $this->emp_model->delete_product(); redirect('employees'); } }