コード例 #1
0
ファイル: Facebook.php プロジェクト: vazahat/dudex
 public function getUserAvatarUrl()
 {
     $data = parent::getUserAvatarUrl();
     while (is_array($data)) {
         $data = current($data);
     }
     return $data;
 }
コード例 #2
0
ファイル: Abstract.php プロジェクト: vazahat/dudex
 public static function getViewerId()
 {
     if (null === self::$_viewerId) {
         self::$_viewerId = OW::getUser()->getId();
     }
     return self::$_viewerId;
 }