31 foreach ($list as $tweet) {
32 echo
'<tr><td style="padding-bottom: 1em;">';
34 if ($profile->getAvatar())
35 echo
'<a href="/profile/show/'.$tweet->getAuthor().
'">'.
36 '<img src="'.$profile->getAvatar().
'" width="64" height="64" /></a>'.
38 echo
'<a href="/profile/show/'.$tweet->getAuthor().
'">'.
39 $tweet->getAuthor().
'</a>';
40 echo
'</td><td style="padding-bottom: 1em;">';
41 echo $tweet->getMessage();
43 echo
'<span style="font-size: 80%;">'.
44 date(
'r', $tweet->getTimestamp()/1000000000).
58 foreach ($list as $user) {
59 echo
'<tr><td style="padding-bottom: 1em;">';
61 if ($profile->getAvatar())
62 echo
'<a href="/profile/show/'.$user.
'">'.
63 '<img src="'.$profile->getAvatar().
'" width="64" height="64" /></a>'.
65 echo
'<a href="/profile/show/'.$user.
'">'.$user.
'</a>';
66 echo
'</td><td style="padding-bottom: 1em;">';
67 echo $profile->getBio();
69 echo
'<span style="font-size: 80%;">'.$profile->getLocation().
'</span>';
showTweets($list)
Copyright (C) 2007-2015 Hypertable, Inc.