]> git.mxchange.org Git - friendica.git/blob - view/smarty3/api_user_xml.tpl
Merge remote-tracking branch 'upstream/master'
[friendica.git] / view / smarty3 / api_user_xml.tpl
1   <user>
2    <id>{{$user.id}}</id>
3    <name>{{$user.name}}</name>
4    <screen_name>{{$user.screen_name}}</screen_name>
5    <location>{{$user.location}}</location>
6    <description>{{$user.description}}</description>
7    <profile_image_url>{{$user.profile_image_url}}</profile_image_url>
8    <url>{{$user.url}}</url>
9    <protected>{{$user.protected}}</protected>
10    <followers_count>{{$user.followers_count}}</followers_count>
11    <friends_count>{{$user.friends_count}}</friends_count>
12    <created_at>{{$user.created_at}}</created_at>
13    <favourites_count>{{$user.favourites_count}}</favourites_count>
14    <utc_offset>{{$user.utc_offset}}</utc_offset>
15    <time_zone>{{$user.time_zone}}</time_zone>
16    <statuses_count>{{$user.statuses_count}}</statuses_count>
17    <following>{{$user.following}}</following>
18    <profile_background_color>{{$user.profile_background_color}}</profile_background_color>
19    <profile_text_color>{{$user.profile_text_color}}</profile_text_color>
20    <profile_link_color>{{$user.profile_link_color}}</profile_link_color>
21    <profile_sidebar_fill_color>{{$user.profile_sidebar_fill_color}}</profile_sidebar_fill_color>
22    <profile_sidebar_border_color>{{$user.profile_sidebar_border_color}}</profile_sidebar_border_color>
23    <profile_background_image_url>{{$user.profile_background_image_url}}</profile_background_image_url>
24    <profile_background_tile>{{$user.profile_background_tile}}</profile_background_tile>
25    <profile_use_background_image>{{$user.profile_use_background_image}}</profile_use_background_image>
26    <notifications>{{$user.notifications}}</notifications>
27    <geo_enabled>{{$user.geo_enabled}}</geo_enabled>
28    <verified>{{$user.verified}}</verified>
29    <lang>{{$user.lang}}</lang>
30    <contributors_enabled>{{$user.contributors_enabled}}</contributors_enabled>
31    <status>{{if $user.status}}
32     <created_at>{{$user.status.created_at}}</created_at>
33     <id>{{$user.status.id}}</id>
34     <text>{{$user.status.text}}</text>
35     <source>{{$user.status.source}}</source>
36     <truncated>{{$user.status.truncated}}</truncated>
37     <in_reply_to_status_id>{{$user.status.in_reply_to_status_id}}</in_reply_to_status_id>
38     <in_reply_to_user_id>{{$user.status.in_reply_to_user_id}}</in_reply_to_user_id>
39     <favorited>{{$user.status.favorited}}</favorited>
40     <in_reply_to_screen_name>{{$user.status.in_reply_to_screen_name}}</in_reply_to_screen_name>
41     <geo>{{$user.status.geo}}</geo>
42     <coordinates>{{$user.status.coordinates}}</coordinates>
43     <place>{{$user.status.place}}</place>
44     <contributors>{{$user.status.contributors}}</contributors>
45   {{/if}}</status>
46   </user>