OEModule\PatientTicketing\widgets\TicketAssignOutcome::run PHP Method

run() public method

public run ( )
    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();
    }