Example #1
0
 public function duplicate(Gathering $gathering)
 {
     $item = parent::duplicate($gathering);
     $db = Loader::db();
     $db->Execute('delete from gaPage where gaiID = ?', array($item->getGatheringItemID()));
     $db->Execute('insert into gaPage (gaiID, cID) values (?, ?)', array($item->getGatheringItemID(), $this->page->getCollectionID()));
     return $item;
 }