summaryrefslogtreecommitdiff
path: root/lib/profileminilist.php
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-07-01 18:40:14 -0700
committerZach Copley <zach@controlyourself.ca>2009-07-01 18:40:14 -0700
commit734f631e1ea9022c6de492e0d2979c9ca00585a4 (patch)
treea95e942faef18e6e4f5461a09d6b9b9700416412 /lib/profileminilist.php
parent6bc37a3254f814b6bece4a62fed4fc27f785f0bb (diff)
Show correct number of profile avatars and 'all' link in subs asides
Diffstat (limited to 'lib/profileminilist.php')
-rw-r--r--lib/profileminilist.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/profileminilist.php b/lib/profileminilist.php
index 09bef6f7c..357b4a2db 100644
--- a/lib/profileminilist.php
+++ b/lib/profileminilist.php
@@ -47,6 +47,7 @@ define('PROFILES_PER_MINILIST', 27);
class ProfileMiniList extends ProfileList
{
+
function startList()
{
$this->out->elementStart('ul', 'entities users xoxo');
@@ -56,6 +57,23 @@ class ProfileMiniList extends ProfileList
{
return new ProfileMiniListItem($profile, $this->action);
}
+
+ function showProfiles()
+ {
+ $cnt = 0;
+
+ while ($this->profile->fetch()) {
+ $cnt++;
+ if ($cnt > PROFILES_PER_MINILIST) {
+ break;
+ }
+ $pli = $this->newListItem($this->profile);
+ $pli->show();
+ }
+
+ return $cnt;
+ }
+
}
class ProfileMiniListItem extends ProfileListItem