示例#1
0
文件: Boards.php 项目: rcrrich/cunity
 /**
  * @param $id
  * @return bool
  */
 public function deleteBoard($id)
 {
     $threads = new Threads();
     $r = $threads->deleteThreadsByBoardId($id);
     if ($r) {
         return $this->delete($this->getAdapter()->quoteInto("id=?", $id)) > 0;
     }
     return false;
 }