示例#1
0
 public function deleteStory($id)
 {
     // Remove the pointer from the database
     $where = $this->getAdapter()->quoteInto('id = ?', $id);
     $this->delete($where);
     $items = new StoryItems();
     $items->deleteItems($id);
 }