OEModule\OphCiExamination\models\Element_OphCiExamination_FurtherFindings::getFurtherFindingsAssigned PHP Method

getFurtherFindingsAssigned() public method

    public function getFurtherFindingsAssigned()
    {
        $further_findings = array();
        if ($this->id) {
            foreach (OphCiExamination_FurtherFindings_Assignment::model()->findAll('element_id=?', array($this->id)) as $ff) {
                $further_findings[] = $ff->finding_id;
            }
        }
        return $further_findings;
    }