X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fgroupaction.php;h=b1a5d771979caf5c432882ada033e0eddedd3d8c;hb=d6b28c64830f632bb2f4b6f3c9369b9e56ad217a;hp=50ecd107c0bee00c113dab2f38bdbff676e25687;hpb=330af9991f1de1ebdeb767014e5c42299effeccc;p=quix0rs-gnu-social.git diff --git a/lib/groupaction.php b/lib/groupaction.php index 50ecd107c0..b1a5d77197 100644 --- a/lib/groupaction.php +++ b/lib/groupaction.php @@ -41,13 +41,12 @@ define('MEMBERS_PER_SECTION', 27); * @author Zach Copley * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ - * */ class GroupAction extends Action { protected $group; - function prepare($args) + protected function prepare(array $args=array()) { parent::prepare($args); @@ -62,40 +61,35 @@ class GroupAction extends Action $args['page'] = $this->page; } common_redirect(common_local_url('showgroup', $args), 301); - return false; } if (!$nickname) { // TRANS: Client error displayed if no nickname argument was given requesting a group page. $this->clientError(_('No nickname.'), 404); - return false; } - $local = Local_group::staticGet('nickname', $nickname); + $local = Local_group::getKV('nickname', $nickname); if (!$local) { - $alias = Group_alias::staticGet('alias', $nickname); + $alias = Group_alias::getKV('alias', $nickname); if ($alias) { $args = array('id' => $alias->group_id); if ($this->page != 1) { $args['page'] = $this->page; } common_redirect(common_local_url('groupbyid', $args), 301); - return false; } else { common_log(LOG_NOTICE, "Couldn't find local group for nickname '$nickname'"); // TRANS: Client error displayed if no remote group with a given name was found requesting group page. $this->clientError(_('No such group.'), 404); - return false; } } - $this->group = User_group::staticGet('id', $local->group_id); + $this->group = User_group::getKV('id', $local->group_id); if (!$this->group) { - // TRANS: Client error displayed if no local group with a given name was found requesting group page. + // TRANS: Client error displayed if no local group with a given name was found requesting group page. $this->clientError(_('No such group.'), 404); - return false; } } @@ -105,19 +99,6 @@ class GroupAction extends Action $block->show(); } - /** - * Local menu - * - * @return void - */ - - function showObjectNav() - { - $nav = new GroupNav($this, $this->group); - $nav->show(); - } - - /** * Fill in the sidebar. * @@ -128,11 +109,16 @@ class GroupAction extends Action $this->showMembers(); $cur = common_current_user(); if ($cur && $cur->isAdmin($this->group)) { + $this->showPending(); $this->showBlocked(); } + $this->showAdmins(); - $cloud = new GroupTagCloudSection($this, $this->group); - $cloud->show(); + + if (!common_config('performance', 'high')) { + $cloud = new GroupTagCloudSection($this, $this->group); + $cloud->show(); + } } /** @@ -152,18 +138,17 @@ class GroupAction extends Action 'class' => 'section')); if (Event::handle('StartShowGroupMembersMiniList', array($this))) { - - // TRANS: Header for mini list of group members on a group page (h2). $this->elementStart('h2'); $this->element('a', array('href' => common_local_url('groupmembers', array('nickname' => $this->group->nickname))), + // TRANS: Header for mini list of group members on a group page (h2). _('Members')); $this->text(' '); $this->text($this->group->getMemberCount()); - + $this->elementEnd('h2'); $gmml = new GroupMembersMiniList($member, $this); @@ -188,32 +173,74 @@ class GroupAction extends Action $this->elementEnd('div'); } - function showBlocked() + function showPending() { - $member = $this->group->getBlocked(0, MEMBERS_PER_SECTION); + if ($this->group->join_policy != User_group::JOIN_POLICY_MODERATE) { + return; + } - if (!$member) { + $pending = $this->group->getQueueCount(); + + if (!$pending) { return; } + $request = $this->group->getRequests(0, MEMBERS_PER_SECTION); + + if (!$request) { + return; + } + + $this->elementStart('div', array('id' => 'entity_pending', + 'class' => 'section')); + + if (Event::handle('StartShowGroupPendingMiniList', array($this))) { + + $this->elementStart('h2'); + + $this->element('a', array('href' => common_local_url('groupqueue', array('nickname' => + $this->group->nickname))), + // TRANS: Header for mini list of users with a pending membership request on a group page (h2). + _('Pending')); + + $this->text(' '); + + $this->text($pending); + + $this->elementEnd('h2'); + + $gmml = new ProfileMiniList($request, $this); + $gmml->show(); + + Event::handle('EndShowGroupPendingMiniList', array($this)); + } + + $this->elementEnd('div'); + } + + function showBlocked() + { + $blocked = $this->group->getBlocked(0, MEMBERS_PER_SECTION); + $this->elementStart('div', array('id' => 'entity_blocked', 'class' => 'section')); if (Event::handle('StartShowGroupBlockedMiniList', array($this))) { - + $this->elementStart('h2'); $this->element('a', array('href' => common_local_url('blockedfromgroup', array('nickname' => $this->group->nickname))), + // TRANS: Header for mini list of users that are blocked in a group page (h2). _('Blocked')); $this->text(' '); $this->text($this->group->getBlockedCount()); - + $this->elementEnd('h2'); - $gmml = new GroupBlockedMiniList($member, $this); + $gmml = new GroupBlockedMiniList($blocked, $this); $cnt = $gmml->show(); if ($cnt == 0) { // TRANS: Description for mini list of group members on a group page when the group has no members. @@ -246,7 +273,6 @@ class GroupAction extends Action $adminSection->show(); } - function noticeFormOptions() { $options = parent::noticeFormOptions(); @@ -258,6 +284,11 @@ class GroupAction extends Action return $options; } + + function getGroup() + { + return $this->group; + } } class GroupAdminSection extends ProfileSection @@ -294,7 +325,7 @@ class GroupAdminSection extends ProfileSection class GroupMembersMiniList extends ProfileMiniList { - function newListItem($profile) + function newListItem(Profile $profile) { return new GroupMembersMiniListItem($profile, $this->action); } @@ -316,7 +347,7 @@ class GroupMembersMiniListItem extends ProfileMiniListItem class GroupBlockedMiniList extends ProfileMiniList { - function newListItem($profile) + function newListItem(Profile $profile) { return new GroupBlockedMiniListItem($profile, $this->action); } @@ -343,4 +374,3 @@ class ThreadingGroupNoticeStream extends ThreadingNoticeStream parent::__construct(new GroupNoticeStream($group, $profile)); } } -