OEModule\PatientTicketing\widgets\BaseTicketAssignment::run PHP 메소드

run() 공개 메소드

renders the widget view.
public run ( )
    public function run()
    {
        $this->render($this->shortName);
    }

Usage Example

예제 #1
0
 public function run()
 {
     if (isset($this->form_data[$this->form_name])) {
         if ($outcome_id = @$this->form_data[$this->form_name]['outcome']) {
             $outcome = models\TicketAssignOutcomeOption::model()->findByPk((int) $outcome_id);
             if ($outcome->followup) {
                 $this->hideFollowUp = false;
             }
         }
     }
     parent::run();
 }