示例#1
0
文件: Contact.php 项目: Trim/movim
 function ajaxRefreshVcard($jid)
 {
     if (!$this->validateJid($jid)) {
         return;
     }
     $a = new Moxl\Xec\Action\Avatar\Get();
     $a->setTo(echapJid($jid))->request();
     $r = new Get();
     $r->setTo(echapJid($jid))->request();
 }
示例#2
0
文件: Vcard4.php 项目: vijo/movim
 function ajaxGetVcard()
 {
     $r = new Get();
     $r->setTo($this->user->getLogin())->setMe()->request();
 }