public function actionView($id) { $this->extraViewProperties['print'] = Yii::app()->session['printConsent']; unset(Yii::app()->session['printConsent']); parent::actionView($id); }
/** * @param $id */ public function actionView($id) { if ($this->event != null && $this->event->id > 0) { $this->iolRefValues = Element_OphInBiometry_IolRefValues::Model()->findAllByAttributes(array('event_id' => $this->event->id)); $this->selectionValues = Element_OphInBiometry_Selection::Model()->findAllByAttributes(array('event_id' => $this->event->id)); } $this->setFlashMessage($id); parent::actionView($id); }
public function actionView($id) { parent::actionView($id); }
public function actionView($id) { $service = new OphCoTherapyapplication_Processor($this->event); $status = $service->getApplicationStatus(); $this->title = $this->event_type->name . ' (' . $status . ')'; return parent::actionView($id); }