/**
  * @return PW_MemberBehaviorStatisticDB
  */
 function _getBehaviorStatisticDb()
 {
     return L::loadDb('memberbehaviorstatistic', 'user');
 }
예제 #2
0
 /**
  * 获取dao服务
  */
 function _getReplyRewardDao()
 {
     static $replyRewardDao = null;
     if (is_null($replyRewardDao)) {
         $replyRewardDao = L::loadDb('ReplyReward', 'forum');
     }
     return $replyRewardDao;
 }