load->library('session'); $this->load->library('rhlib'); } function retValOrNull($val){ //especially for combo & looukup with no item selected $val = ($val=='')? null : $val; return $val; } function get_pekerjaanmhs(){ $q = "SELECT * FROM pekerjaanmhs ORDER BY kdpekerjaanmhs"; $this->rhlib->jsonFromQueryWLimit($q); } function insert_pekerjaanmhs(){ $dataArray = $this->getFieldsAndValues(); $ret = $this->rhlib->insertRecord('pekerjaanmhs',$dataArray); $this->rhlib->insertRecordPublic('pekerjaanmhs',$dataArray); return $ret; } function update_pekerjaanmhs(){ $fieldsAndValues = $this->getFieldsAndValues(); //UPDATE $where['idpekerjaanmhs'] = $_POST['idpekerjaanmhs']; $this->db->where('idpekerjaanmhs', $_POST['idpekerjaanmhs']); $this->db->update('pekerjaanmhs', $fieldsAndValues); if($this->db->affected_rows()){ $ret["success"]=true; $ret["msg"]='Update Data Berhasil'; $this->rhlib->updateRecordPublic('pekerjaanmhs',$fieldsAndValues,$where); }else{ $ret["success"]=false; $ret["msg"]= 'Update Data Gagal'; } return $ret; } function delete_pekerjaanmhs(){ $where['idpekerjaanmhs'] = $_POST['idpekerjaanmhs']; $ret = $this->rhlib->deleteRecord('pekerjaanmhs',$where); $this->rhlib->deleteRecordPublic('pekerjaanmhs',$where); return $ret; } function getFieldsAndValues(){ $dataArray = array( 'kdpekerjaanmhs'=> $_POST['kdpekerjaanmhs'], 'nmpekerjaanmhs'=> $_POST['nmpekerjaanmhs'], 'deskripsi'=> $_POST['deskripsi'] ); return $dataArray; } } ?>