OEModule\OphCiExamination\models\Element_OphCiExamination_ClinicOutcome::roleDependencyValidation PHP Method

roleDependencyValidation() public method

Role comments are only required if role flags it.
public roleDependencyValidation ( $attribute )
    public function roleDependencyValidation($attribute)
    {
        if ($this->role && $this->role->requires_comment && !trim($this->role_comments)) {
            $this->addError($attribute, 'Role requires a comment');
        }
    }