Exemplo n.º 1
0
 /**
  * 增加版块
  *
  * @param object $forumModel 版块数据模型
  * return mixed
  */
 public function addForum(PwForumDm $dm)
 {
     if (($result = $dm->beforeAdd()) !== true) {
         return $result;
     }
     return $this->_getDao(self::FETCH_ALL)->addForum($dm->getData());
 }