Example #1
0
 protected function OnInput()
 {
     parent::OnInput();
     $this->title = 'Информация о персонале';
     $this->personal = getPersonalInfoById($_GET['id']);
     $this->schedule = getScheduleOfDoctor($_GET['id']);
     //Getting patients
     $this->patients = getAllPatients();
     //Getting procedute and place
     $this->procedure = getAllProcedures();
     $this->place = getAllPlaces();
 }
Example #2
0
 protected function OnInput()
 {
     parent::OnInput();
     $this->title = 'Информация о персонале';
     $this->patient = getPatientInfoById($_GET['id']);
     $this->medicines = getAllMedicines();
     $this->costs = getAllCosts();
     $this->procedure = getAllProcedures();
     $this->place = getAllPlaces();
     $this->doctor = getAllPersonals();
     $this->schedule = getScheduleOfPatient($_GET['id']);
 }