예제 #1
0
 public function getAvatar($profile)
 {
     if (!$this->exists()) {
         return false;
     }
     $avatar = JSUserApi::getAvatarPath($profile->id);
     return $avatar;
 }
예제 #2
0
파일: avatar.php 프로젝트: Tommar/vino2
 public function _getAvatar($profile)
 {
     $avatar = new stdClass();
     $avatar->link = JSUserApi::getAvatarPath($profile->id);
     return $avatar;
 }