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