コード例 #1
0
ファイル: UserController.php プロジェクト: kutsanov/med
 public function actionDel()
 {
     $Doctor = new Doctor();
     $Doctor->set_prop_from_arr($_REQUEST);
     $Doctor->hosp_id = $this->_user['hosp_id'];
     $ar['get'] = $Doctor->del();
     Core::encode_echo($ar);
 }
コード例 #2
0
ファイル: UserController.php プロジェクト: kutsanov/med
 public function actionDoctorDel()
 {
     $Doctor = new Doctor();
     $Doctor->set_prop_from_arr($_REQUEST);
     $ar['get'] = $Doctor->del();
     Core::encode_echo($ar);
 }