BaseEventTypeController::redirectToPatientEpisodes PHP Method

redirectToPatientEpisodes() protected method

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