From: Zach Copley Date: Thu, 14 Apr 2011 00:46:35 +0000 (-0700) Subject: Group directory - add in asides X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b959147adaffb11ba7f939267555561ca08b6ac0;p=quix0rs-gnu-social.git Group directory - add in asides --- diff --git a/plugins/Directory/actions/groupdirectory.php b/plugins/Directory/actions/groupdirectory.php index 84819ad763..1b5c9a9e6e 100644 --- a/plugins/Directory/actions/groupdirectory.php +++ b/plugins/Directory/actions/groupdirectory.php @@ -423,9 +423,6 @@ E_O_T } } - // XXX This needs some adjustment - -/* function showSections() { $gbp = new GroupsByPostsSection($this); @@ -433,6 +430,5 @@ E_O_T $gbm = new GroupsByMembersSection($this); $gbm->show(); } -*/ } diff --git a/plugins/Directory/lib/sortablegrouplist.php b/plugins/Directory/lib/sortablegrouplist.php index 7d0265d9ac..7d1e2d5b80 100644 --- a/plugins/Directory/lib/sortablegrouplist.php +++ b/plugins/Directory/lib/sortablegrouplist.php @@ -139,20 +139,6 @@ class SortableGroupListItem extends SortableSubscriptionListItem $this->owner = $owner; } - function startItem() - { - $attr = array( - 'class' => 'profile', - 'id' => 'profile-' . $this->profile->id - ); - - if ($this->alt) { - $attr['class'] .= ' alt'; - } - - $this->out->elementStart('tr', $attr); - } - function showHomepage() { if (!empty($this->profile->homepage)) { @@ -197,33 +183,6 @@ class SortableGroupListItem extends SortableSubscriptionListItem $this->out->elementEnd('a'); } - function endItem() - { - $this->out->elementEnd('tr'); - } - - function startProfile() - { - $this->out->elementStart('td', 'entity_profile vcard entry-content'); - } - - function endProfile() - { - $this->out->elementEnd('td'); - } - - function startActions() - { - $this->out->elementStart('td', 'entity_actions'); - $this->out->elementStart('ul'); - } - - function endActions() - { - $this->out->elementEnd('ul'); - $this->out->elementEnd('td'); - } - function show() { if (Event::handle('StartProfileListItem', array($this))) { @@ -277,7 +236,7 @@ class SortableGroupListItem extends SortableSubscriptionListItem function showMemberCount() { - $this->out->elementStart('td', 'entry_subscriber_count'); + $this->out->elementStart('td', 'entry_member_count'); $this->out->raw($this->profile->getMemberCount()); $this->out->elementEnd('td'); } @@ -291,7 +250,7 @@ class SortableGroupListItem extends SortableSubscriptionListItem function showAdmins() { - $this->out->elementStart('td', 'entry_notice_count'); + $this->out->elementStart('td', 'entry_admins'); // @todo $this->out->raw('gargargar'); $this->out->elementEnd('td');