コード例 #1
0
ファイル: BotNotifier.class.php プロジェクト: rayku/rayku
 public function getCCUsername(User $user)
 {
     if ($this->type == 'gtalk') {
         return $user->getGtalkCCUsername();
     } else {
         if ($this->type == 'fb') {
             return $user->getFacebookCCUsername();
         } else {
             throw new \Exception('You must call setType() method on BotNotifier object before you use it. And you must set it to one of supported types.');
         }
     }
 }
コード例 #2
0
 public function getCCUsername(User $user)
 {
     return $user->getDesktopCCUsername();
 }
コード例 #3
0
ファイル: WWWNotifier.class.php プロジェクト: rayku/rayku
 public function isUserOnline(User $user)
 {
     return $user->isOnline();
 }