new _working_ group count api addition
This commit is contained in:
parent
e44fb59f91
commit
d4240edf68
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
* lib/apiaction.php
|
* lib/apiaction.php
|
||||||
|
|
||||||
- add urls to larger avatars
|
- add urls to larger avatars and groupcount field
|
||||||
|
|
||||||
~LINE 213
|
~LINE 213
|
||||||
$avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
|
$avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
|
||||||
|
@ -21,9 +21,8 @@
|
||||||
$avatar = $profile->getOriginalAvatar();
|
$avatar = $profile->getOriginalAvatar();
|
||||||
$twitter_user['profile_image_url_original'] = ($avatar) ? $avatar->displayUrl() :
|
$twitter_user['profile_image_url_original'] = ($avatar) ? $avatar->displayUrl() :
|
||||||
Avatar::defaultImage(AVATAR_PROFILE_SIZE);
|
Avatar::defaultImage(AVATAR_PROFILE_SIZE);
|
||||||
$groups = $profile->getGroups();
|
|
||||||
$groups_count = 0; while($groups->fetch()) $groups_count++;
|
$twitter_user['groups_count'] = $profile->getGroups(0, null)->N;
|
||||||
$twitter_user['groups_count'] = $groups_count;
|
|
||||||
|
|
||||||
|
|
||||||
- add the uri-field
|
- add the uri-field
|
||||||
|
|
|
@ -220,9 +220,7 @@ class ApiAction extends Action
|
||||||
$twitter_user['profile_image_url_original'] = ($avatar) ? $avatar->displayUrl() :
|
$twitter_user['profile_image_url_original'] = ($avatar) ? $avatar->displayUrl() :
|
||||||
Avatar::defaultImage(AVATAR_PROFILE_SIZE);
|
Avatar::defaultImage(AVATAR_PROFILE_SIZE);
|
||||||
|
|
||||||
$groups = $profile->getGroups();
|
$twitter_user['groups_count'] = $profile->getGroups(0, null)->N;
|
||||||
$groups_count = 0; while($groups->fetch()) $groups_count++;
|
|
||||||
$twitter_user['groups_count'] = $groups_count;
|
|
||||||
|
|
||||||
$twitter_user['url'] = ($profile->homepage) ? $profile->homepage : null;
|
$twitter_user['url'] = ($profile->homepage) ? $profile->homepage : null;
|
||||||
$twitter_user['protected'] = (!empty($user) && $user->private_stream) ? true : false;
|
$twitter_user['protected'] = (!empty($user) && $user->private_stream) ? true : false;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user