public function deptListAction()
 {
     $db_dept = new Global_Model_DbTable_DbDept();
     if ($this->getRequest()->isPost()) {
         $_data = $this->getRequest()->getPost();
         $search = array('title' => $_data['title'], 'status' => $_data['status_search']);
         $limit = $dept_session->limit;
     } else {
         $search = '';
     }
     //$result = Application_Model_DbTable_DbGlobal::getResultError();
     $rs_rows = $db_dept->getAllFacultyList($search);
     $glClass = new Application_Model_GlobalClass();
     $rs_rows = $glClass->getImgActive($rs_rows, BASE_URL, true);
     $list = new Application_Form_Frmtable();
     $collumns = array("FACULTY_ENNAME", "FACULTY_KHNAME", "SHORTCUT", "MODIFY_DATE", "STATUS", "BY_USER");
     $link = array('module' => 'global', 'controller' => 'index', 'action' => 'edit-dept');
     $this->view->list = $list->getCheckList(1, $collumns, $rs_rows, array('en_name' => $link));
     $frm = new Global_Form_FrmSearchMajor();
     $frm = $frm->FrmDepartment();
     Application_Model_Decorator::removeAllDecorator($frm);
     $this->view->frm_search = $frm;
     $frm = new Application_Form_FrmOther();
     $frm = $frm->FrmAddDept(null);
     Application_Model_Decorator::removeAllDecorator($frm);
     $this->view->add_dept = $frm;
 }