Beispiel #1
0
 /**
  * 更新论坛信息
  *
  * @param object $dm 更新信息
  * @return bool
  */
 public function updateInfo(PwBbsinfoDm $dm)
 {
     if (($result = $dm->beforeUpdate()) !== true) {
         return $result;
     }
     return $this->_getDao()->update($dm->id, $dm->getData(), $dm->getIncreaseData());
 }