D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ksclnmuac
/
public_html
/
jobs
/
application
/
models
/
user
/
Filename :
DepartmentManagement.php
back
Copy
<?php /** * Description of DepartmentManagement * * @author Softpro India Pvt. Ltd */ class DepartmentManagement extends CI_Model { //put your code here function getDepartments() { $this->db->select("*"); $this->db->from("department_mst d"); $this->db->where("dm_active_status", "T"); $this->db->where("dm_delete_status", "F"); $this->db->order_by("dm_name", "ASC"); return $this->db->get(); } }