コード例 #1
0
ファイル: DiscoInfo.php プロジェクト: movim/moxl
 public function handle($stanza, $parent = false)
 {
     $jid = (string) $parent->attributes()->from;
     $to = current(explode('/', (string) $parent->attributes()->to));
     $id = (string) $parent->attributes()->id;
     Disco::answer($jid, $id);
 }
コード例 #2
0
ファイル: GetMetadata.php プロジェクト: Hywan/moxl
 public function request()
 {
     $this->store();
     Disco::request($this->_to, $this->_node);
 }
コード例 #3
0
ファイル: Items.php プロジェクト: Hywan/moxl
 public function request()
 {
     $this->store();
     Disco::items($this->_to);
 }