當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Conversation::get方法代碼示例

本文整理匯總了PHP中Conversation::get方法的典型用法代碼示例。如果您正苦於以下問題:PHP Conversation::get方法的具體用法?PHP Conversation::get怎麽用?PHP Conversation::get使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Conversation的用法示例。


在下文中一共展示了Conversation::get方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: unserialize

 /**
  * {@inheritdoc}
  */
 public function unserialize($data)
 {
     $data = unserialize($data);
     $conversation = \Conversation::get($data['conversation']);
     $players = \Player::arrayIdToModel($data['players']);
     $teams = \Team::arrayIdToModel($data['teams']);
     $this->__construct($conversation, array_merge($players, $teams));
 }
開發者ID:blast007,項目名稱:bzion,代碼行數:11,代碼來源:ConversationJoinEvent.php

示例2: onMessageServerEvent

 /**
  * Pushes or emails a new private message to the user
  *
  * @param array $event The event data we received from the web server
  */
 private function onMessageServerEvent($event)
 {
     // A list of players who received a message so that we can e-mail the
     // ones who didn't
     $received = array();
     $conversation = \Conversation::get($event->data->conversation);
     $conversationMembers = $conversation->getPlayerIds();
     foreach ($this->clients as $client) {
         $player = $client->Player;
         if (!in_array($player->getId(), $conversationMembers)) {
             // Don't notify that player, he doesn't belong in the conversation
             continue;
         }
         $event->notification_count = $player->countUnreadNotifications();
         $event->message_count = $player->countUnreadMessages();
         $this->send($client, $event);
         $received[] = $player->getId();
     }
     // Send e-mails
     foreach ($event->data->recipients as $recipient) {
         // Only send an email to users who aren't currently logged in
         if (!in_array($recipient, $received)) {
             $this->log("<fg=green>E-mailing player {$recipient->getId()} ({$recipient->getUsername()})</>");
             $this->subscriber->sendEmails('New message received', array($recipient), 'message', array('message' => \Message::get($event->data->message)));
         }
     }
 }
開發者ID:blast007,項目名稱:bzion,代碼行數:32,代碼來源:EventPusher.php

示例3: getConversation

 /**
  * Get the conversation where the event took place
  * @return Conversation
  */
 public function getConversation()
 {
     return Conversation::get($this->conversation);
 }
開發者ID:blast007,項目名稱:bzion,代碼行數:8,代碼來源:AbstractMessage.php


注:本文中的Conversation::get方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。