BaseEventTypeController::redirectToPatientEpisodes PHP 메소드

redirectToPatientEpisodes() 보호된 메소드

Redirect to the patient episodes when the controller determines the action cannot be carried out.
    protected function redirectToPatientEpisodes()
    {
        $this->redirect(array('/patient/episodes/' . $this->patient->id));
    }

Usage Example

 public function redirectToPatientEpisodes()
 {
     parent::redirectToPatientEpisodes();
 }
BaseEventTypeController