示例#1
0
 public function beforeDelete()
 {
     if (!parent::beforeDelete()) {
         return false;
     }
     $properties = Property::findAll(['property_group_id' => $this->id]);
     foreach ($properties as $prop) {
         $prop->delete();
     }
     return true;
 }