/**
  * delete collection
  *
  */
 public function delete()
 {
     if ($this->loaded()) {
         // delete all the item links
         $this->clean();
         // delete collection
         parent::delete();
     }
 }