OEModule\OphCiExamination\models\Element_OphCiExamination_Diagnoses::beforeDelete PHP 메소드

beforeDelete() 보호된 메소드

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