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