Output profile background image info in the API user objects
This commit is contained in:
parent
c8bd6d9f7a
commit
dbb86f9486
11
lib/api.php
11
lib/api.php
@ -177,9 +177,14 @@ class ApiAction extends Action
|
||||
$twitter_user['utc_offset'] = $t->format('Z');
|
||||
$twitter_user['time_zone'] = $timezone;
|
||||
|
||||
// To be supported some day, perhaps
|
||||
$twitter_user['profile_background_image_url'] = '';
|
||||
$twitter_user['profile_background_tile'] = false;
|
||||
$twitter_user['profile_background_image_url']
|
||||
= empty($design->backgroundimage)
|
||||
? '' : ($design->disposition & BACKGROUND_ON)
|
||||
? Design::url($design->backgroundimage) : '';
|
||||
|
||||
$twitter_user['profile_background_tile']
|
||||
= empty($design->disposition)
|
||||
? '' : ($design->disposition & BACKGROUND_TILE) ? 'true' : 'false';
|
||||
|
||||
$twitter_user['statuses_count'] = $profile->noticeCount();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user