コード例 #1
0
ファイル: PwTorrentUser.php プロジェクト: Going2333/WindPT
 public function addTorrentUser(PwTorrentUserDm $dm)
 {
     if (($result = $dm->beforeAdd()) !== true) {
         return $result;
     }
     return $this->_getDao(self::FETCH_MAIN)->addTorrentUser($dm->getData());
 }