예제 #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();
 }