コード例 #1
0
ファイル: EntityDriver.php プロジェクト: joadr/cms
 public function delete($id)
 {
     $entity = $this->get($id);
     foreach ($entity->attributes as $index => $attribute) {
         $this->deleteAttribute($attribute);
     }
     parent::delete($id);
 }
コード例 #2
0
ファイル: ImageDriver.php プロジェクト: joadr/cms
 public function delete($id)
 {
     return parent::delete($id);
 }