OEModule\OphCiExamination\models\Element_OphCiExamination_Diagnoses::beforeDelete PHP Method

beforeDelete() protected method

Delete the related diagnoses for this element.
protected beforeDelete ( ) : boolean
return boolean
    protected function beforeDelete()
    {
        foreach ($this->diagnoses as $diagnosis) {
            $diagnosis->delete();
        }
        return parent::beforeDelete();
    }