2009-01-21 07:22:10 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2009-01-21 07:22:10 +00:00
|
|
|
*
|
|
|
|
* Group main page
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2009-01-21 07:55:37 +00:00
|
|
|
* @category Group
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Sarven Capadisli <csarven@status.net>
|
2009-08-25 23:12:20 +01:00
|
|
|
* @copyright 2008-2009 StatusNet, Inc.
|
2009-01-21 07:22:10 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-21 07:22:10 +00:00
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-01-21 07:22:10 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
require_once INSTALLDIR.'/lib/noticelist.php';
|
|
|
|
require_once INSTALLDIR.'/lib/feedlist.php';
|
|
|
|
|
2009-04-17 02:11:38 +01:00
|
|
|
define('MEMBERS_PER_SECTION', 27);
|
2009-01-21 15:15:48 +00:00
|
|
|
|
2009-01-21 07:22:10 +00:00
|
|
|
/**
|
|
|
|
* Group main page
|
|
|
|
*
|
2009-01-21 07:55:37 +00:00
|
|
|
* @category Group
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-01-21 07:22:10 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-21 07:22:10 +00:00
|
|
|
*/
|
2009-06-18 10:01:06 +01:00
|
|
|
class ShowgroupAction extends GroupDesignAction
|
2009-01-21 07:22:10 +00:00
|
|
|
{
|
|
|
|
/** page we're viewing. */
|
|
|
|
var $page = null;
|
2011-04-11 01:16:51 +01:00
|
|
|
var $userProfile = null;
|
|
|
|
var $notice = null;
|
2009-01-21 07:22:10 +00:00
|
|
|
|
2009-01-21 14:04:54 +00:00
|
|
|
/**
|
|
|
|
* Is this page read-only?
|
|
|
|
*
|
|
|
|
* @return boolean true
|
|
|
|
*/
|
2009-04-13 20:49:26 +01:00
|
|
|
function isReadOnly($args)
|
2009-01-21 14:04:54 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-01-21 07:22:10 +00:00
|
|
|
/**
|
|
|
|
* Title of the page
|
|
|
|
*
|
|
|
|
* @return string page title, with page number
|
|
|
|
*/
|
|
|
|
function title()
|
|
|
|
{
|
2010-11-03 19:59:19 +00:00
|
|
|
$base = $this->group->getFancyName();
|
2009-03-30 15:28:44 +01:00
|
|
|
|
2009-01-21 07:22:10 +00:00
|
|
|
if ($this->page == 1) {
|
2010-10-30 13:36:54 +01:00
|
|
|
// TRANS: Page title for first group page. %s is a group name.
|
2010-01-25 03:57:33 +00:00
|
|
|
return sprintf(_('%s group'), $base);
|
2009-01-21 07:22:10 +00:00
|
|
|
} else {
|
2010-10-30 13:36:54 +01:00
|
|
|
// TRANS: Page title for any but first group page.
|
|
|
|
// TRANS: %1$s is a group name, $2$s is a page number.
|
2010-01-25 03:57:33 +00:00
|
|
|
return sprintf(_('%1$s group, page %2$d'),
|
2009-03-30 15:28:44 +01:00
|
|
|
$base,
|
2009-01-21 07:22:10 +00:00
|
|
|
$this->page);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepare the action
|
|
|
|
*
|
|
|
|
* Reads and validates arguments and instantiates the attributes.
|
|
|
|
*
|
|
|
|
* @param array $args $_REQUEST args
|
|
|
|
*
|
|
|
|
* @return boolean success flag
|
|
|
|
*/
|
|
|
|
function prepare($args)
|
|
|
|
{
|
|
|
|
parent::prepare($args);
|
|
|
|
|
|
|
|
$this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
|
|
|
|
|
|
|
|
$nickname_arg = $this->arg('nickname');
|
|
|
|
$nickname = common_canonical_nickname($nickname_arg);
|
|
|
|
|
|
|
|
// Permanent redirect on non-canonical nickname
|
|
|
|
|
|
|
|
if ($nickname_arg != $nickname) {
|
|
|
|
$args = array('nickname' => $nickname);
|
|
|
|
if ($this->page != 1) {
|
|
|
|
$args['page'] = $this->page;
|
|
|
|
}
|
|
|
|
common_redirect(common_local_url('showgroup', $args), 301);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$nickname) {
|
2010-10-30 13:36:54 +01:00
|
|
|
// TRANS: Client error displayed if no nickname argument was given requesting a group page.
|
2010-01-10 11:26:24 +00:00
|
|
|
$this->clientError(_('No nickname.'), 404);
|
2009-01-21 07:22:10 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-02-25 13:44:15 +00:00
|
|
|
$local = Local_group::staticGet('nickname', $nickname);
|
|
|
|
|
|
|
|
if (!$local) {
|
2009-08-19 14:22:06 +01:00
|
|
|
$alias = Group_alias::staticGet('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 {
|
2010-02-26 15:10:38 +00:00
|
|
|
common_log(LOG_NOTICE, "Couldn't find local group for nickname '$nickname'");
|
2010-10-30 13:36:54 +01:00
|
|
|
// TRANS: Client error displayed if no remote group with a given name was found requesting group page.
|
2010-01-10 11:26:24 +00:00
|
|
|
$this->clientError(_('No such group.'), 404);
|
2009-08-19 14:22:06 +01:00
|
|
|
return false;
|
|
|
|
}
|
2009-01-21 07:22:10 +00:00
|
|
|
}
|
|
|
|
|
2010-02-26 15:10:38 +00:00
|
|
|
$this->group = User_group::staticGet('id', $local->group_id);
|
|
|
|
|
|
|
|
if (!$this->group) {
|
2010-10-30 13:36:54 +01:00
|
|
|
// TRANS: Client error displayed if no local group with a given name was found requesting group page.
|
2010-02-26 15:10:38 +00:00
|
|
|
$this->clientError(_('No such group.'), 404);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-04-11 16:54:42 +01:00
|
|
|
$this->userProfile = Profile::current();
|
2011-04-11 01:16:51 +01:00
|
|
|
|
2011-04-15 23:54:35 +01:00
|
|
|
$stream = new ThreadingGroupNoticeStream($this->group, $this->userProfile);
|
2011-04-11 01:16:51 +01:00
|
|
|
|
|
|
|
$this->notice = $stream->getNotices(($this->page-1)*NOTICES_PER_PAGE,
|
|
|
|
NOTICES_PER_PAGE + 1);
|
|
|
|
|
2009-02-06 00:16:10 +00:00
|
|
|
common_set_returnto($this->selfUrl());
|
|
|
|
|
2009-01-21 07:22:10 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the request
|
|
|
|
*
|
|
|
|
* Shows a profile for the group, some controls, and a list of
|
|
|
|
* group notices.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function handle($args)
|
|
|
|
{
|
|
|
|
$this->showPage();
|
|
|
|
}
|
|
|
|
|
2009-01-22 06:50:39 +00:00
|
|
|
/**
|
|
|
|
* Local menu
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-03-01 21:22:19 +00:00
|
|
|
function showObjectNav()
|
2009-01-21 14:55:44 +00:00
|
|
|
{
|
|
|
|
$nav = new GroupNav($this, $this->group);
|
|
|
|
$nav->show();
|
|
|
|
}
|
|
|
|
|
2009-01-21 07:22:10 +00:00
|
|
|
/**
|
|
|
|
* Show the page content
|
|
|
|
*
|
|
|
|
* Shows a group profile and a list of group notices
|
|
|
|
*/
|
|
|
|
function showContent()
|
|
|
|
{
|
|
|
|
$this->showGroupNotices();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the group notices
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showGroupNotices()
|
|
|
|
{
|
2011-04-11 16:54:42 +01:00
|
|
|
$nl = new ThreadedNoticeList($this->notice, $this, $this->userProfile);
|
2009-01-21 07:22:10 +00:00
|
|
|
$cnt = $nl->show();
|
|
|
|
|
|
|
|
$this->pagination($this->page > 1,
|
|
|
|
$cnt > NOTICES_PER_PAGE,
|
|
|
|
$this->page,
|
|
|
|
'showgroup',
|
|
|
|
array('nickname' => $this->group->nickname));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-02-11 16:37:50 +00:00
|
|
|
* Get a list of the feeds for this page
|
2009-01-21 07:22:10 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2009-02-11 16:37:50 +00:00
|
|
|
function getFeeds()
|
2009-01-21 07:22:10 +00:00
|
|
|
{
|
|
|
|
$url =
|
|
|
|
common_local_url('grouprss',
|
|
|
|
array('nickname' => $this->group->nickname));
|
|
|
|
|
2009-07-10 22:00:27 +01:00
|
|
|
return array(new Feed(Feed::RSS1,
|
|
|
|
common_local_url('grouprss',
|
|
|
|
array('nickname' => $this->group->nickname)),
|
2010-10-30 13:36:54 +01:00
|
|
|
// TRANS: Tooltip for feed link. %s is a group nickname.
|
2009-07-10 22:00:27 +01:00
|
|
|
sprintf(_('Notice feed for %s group (RSS 1.0)'),
|
|
|
|
$this->group->nickname)),
|
|
|
|
new Feed(Feed::RSS2,
|
2009-10-29 23:09:42 +00:00
|
|
|
common_local_url('ApiTimelineGroup',
|
|
|
|
array('format' => 'rss',
|
2010-02-10 02:32:52 +00:00
|
|
|
'id' => $this->group->id)),
|
2010-10-30 13:36:54 +01:00
|
|
|
// TRANS: Tooltip for feed link. %s is a group nickname.
|
2009-07-10 22:00:27 +01:00
|
|
|
sprintf(_('Notice feed for %s group (RSS 2.0)'),
|
|
|
|
$this->group->nickname)),
|
|
|
|
new Feed(Feed::ATOM,
|
2009-10-29 23:09:42 +00:00
|
|
|
common_local_url('ApiTimelineGroup',
|
|
|
|
array('format' => 'atom',
|
2010-02-10 02:32:52 +00:00
|
|
|
'id' => $this->group->id)),
|
2010-10-30 13:36:54 +01:00
|
|
|
// TRANS: Tooltip for feed link. %s is a group nickname.
|
2009-07-10 22:00:27 +01:00
|
|
|
sprintf(_('Notice feed for %s group (Atom)'),
|
2009-09-30 13:12:17 +01:00
|
|
|
$this->group->nickname)),
|
|
|
|
new Feed(Feed::FOAF,
|
|
|
|
common_local_url('foafgroup',
|
|
|
|
array('nickname' => $this->group->nickname)),
|
2010-10-30 13:36:54 +01:00
|
|
|
// TRANS: Tooltip for feed link. %s is a group nickname.
|
2009-09-30 13:12:17 +01:00
|
|
|
sprintf(_('FOAF for %s group'),
|
|
|
|
$this->group->nickname)));
|
2009-01-21 07:22:10 +00:00
|
|
|
}
|
2009-01-21 15:15:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Fill in the sidebar.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showSections()
|
|
|
|
{
|
|
|
|
$this->showMembers();
|
2009-02-01 21:24:54 +00:00
|
|
|
$this->showStatistics();
|
2009-06-29 15:22:17 +01:00
|
|
|
$this->showAdmins();
|
2009-01-22 21:15:21 +00:00
|
|
|
$cloud = new GroupTagCloudSection($this, $this->group);
|
|
|
|
$cloud->show();
|
2009-01-21 15:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show mini-list of members
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showMembers()
|
|
|
|
{
|
|
|
|
$member = $this->group->getMembers(0, MEMBERS_PER_SECTION);
|
|
|
|
|
|
|
|
if (!$member) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-23 00:20:05 +00:00
|
|
|
$this->elementStart('div', array('id' => 'entity_members',
|
2009-01-21 15:15:48 +00:00
|
|
|
'class' => 'section'));
|
|
|
|
|
2010-04-05 15:12:27 +01:00
|
|
|
if (Event::handle('StartShowGroupMembersMiniList', array($this))) {
|
2009-01-21 15:15:48 +00:00
|
|
|
|
2010-10-30 13:36:54 +01:00
|
|
|
// TRANS: Header for mini list of group members on a group page (h2).
|
2010-04-05 15:12:27 +01:00
|
|
|
$this->element('h2', null, _('Members'));
|
|
|
|
|
2010-04-05 15:47:07 +01:00
|
|
|
$gmml = new GroupMembersMiniList($member, $this);
|
|
|
|
$cnt = $gmml->show();
|
2010-04-05 15:12:27 +01:00
|
|
|
if ($cnt == 0) {
|
2010-10-30 13:36:54 +01:00
|
|
|
// TRANS: Description for mini list of group members on a group page when the group has no members.
|
2010-04-05 15:12:27 +01:00
|
|
|
$this->element('p', null, _('(None)'));
|
|
|
|
}
|
|
|
|
|
2010-10-30 13:36:54 +01:00
|
|
|
// @todo FIXME: Should be shown if a group has more than 27 members, but I do not see it displayed at
|
|
|
|
// for example http://identi.ca/group/statusnet. Broken?
|
2010-04-05 15:12:27 +01:00
|
|
|
if ($cnt > MEMBERS_PER_SECTION) {
|
|
|
|
$this->element('a', array('href' => common_local_url('groupmembers',
|
|
|
|
array('nickname' => $this->group->nickname))),
|
2010-10-30 13:36:54 +01:00
|
|
|
// TRANS: Link to all group members from mini list of group members if group has more than n members.
|
2010-04-05 15:12:27 +01:00
|
|
|
_('All members'));
|
|
|
|
}
|
2009-01-21 15:15:48 +00:00
|
|
|
|
2010-04-05 15:12:27 +01:00
|
|
|
Event::handle('EndShowGroupMembersMiniList', array($this));
|
2009-01-21 15:15:48 +00:00
|
|
|
}
|
2009-01-23 00:20:05 +00:00
|
|
|
|
|
|
|
$this->elementEnd('div');
|
2009-01-21 15:15:48 +00:00
|
|
|
}
|
2009-01-23 03:19:03 +00:00
|
|
|
|
2009-06-29 15:22:17 +01:00
|
|
|
/**
|
|
|
|
* Show list of admins
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showAdmins()
|
|
|
|
{
|
|
|
|
$adminSection = new GroupAdminSection($this, $this->group);
|
|
|
|
$adminSection->show();
|
|
|
|
}
|
|
|
|
|
2009-02-01 21:24:54 +00:00
|
|
|
/**
|
|
|
|
* Show some statistics
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showStatistics()
|
|
|
|
{
|
|
|
|
$this->elementStart('div', array('id' => 'entity_statistics',
|
|
|
|
'class' => 'section'));
|
|
|
|
|
2010-10-30 13:36:54 +01:00
|
|
|
// TRANS: Header for group statistics on a group page (h2).
|
2009-02-01 21:24:54 +00:00
|
|
|
$this->element('h2', null, _('Statistics'));
|
|
|
|
|
2011-03-16 17:58:18 +00:00
|
|
|
$this->elementStart('dl');
|
2011-03-24 10:47:57 +00:00
|
|
|
|
|
|
|
// TRANS: Label for group creation date.
|
2010-10-30 13:36:54 +01:00
|
|
|
$this->element('dt', null, _m('LABEL','Created'));
|
2011-01-14 20:36:06 +00:00
|
|
|
$this->element('dd', 'entity_created', date('j M Y',
|
2009-02-01 21:24:54 +00:00
|
|
|
strtotime($this->group->created)));
|
2010-10-30 13:36:54 +01:00
|
|
|
// @todo FIXME: i18n issue. This label gets a colon added from somewhere. Should be part of the message.
|
|
|
|
// TRANS: Label for member count in statistics on group page.
|
|
|
|
$this->element('dt', null, _m('LABEL','Members'));
|
2010-06-16 22:29:24 +01:00
|
|
|
$this->element('dd', null, $this->group->getMemberCount());
|
2009-02-01 21:24:54 +00:00
|
|
|
$this->elementEnd('dl');
|
|
|
|
|
|
|
|
$this->elementEnd('div');
|
|
|
|
}
|
|
|
|
|
2009-01-23 03:19:03 +00:00
|
|
|
function showAnonymousMessage()
|
|
|
|
{
|
2009-03-19 21:55:03 +00:00
|
|
|
if (!(common_config('site','closed') || common_config('site','inviteonly'))) {
|
2010-10-30 13:36:54 +01:00
|
|
|
// @todo FIXME: use group full name here if available instead of (uglier) primary alias.
|
|
|
|
// TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations.
|
|
|
|
// TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
|
|
|
|
// TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
|
|
|
|
// TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
|
2009-03-19 21:55:03 +00:00
|
|
|
$m = sprintf(_('**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
|
2009-08-25 23:16:46 +01:00
|
|
|
'based on the Free Software [StatusNet](http://status.net/) tool. Its members share ' .
|
2009-03-19 21:55:03 +00:00
|
|
|
'short messages about their life and interests. '.
|
2009-08-21 21:45:42 +01:00
|
|
|
'[Join now](%%%%action.register%%%%) to become part of this group and many more! ([Read more](%%%%doc.help%%%%))'),
|
|
|
|
$this->group->nickname);
|
2009-03-19 21:55:03 +00:00
|
|
|
} else {
|
2010-10-30 13:36:54 +01:00
|
|
|
// @todo FIXME: use group full name here if available instead of (uglier) primary alias.
|
|
|
|
// TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
|
|
|
|
// TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
|
|
|
|
// TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
|
2009-03-19 21:55:03 +00:00
|
|
|
$m = sprintf(_('**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
|
2009-08-25 23:16:46 +01:00
|
|
|
'based on the Free Software [StatusNet](http://status.net/) tool. Its members share ' .
|
2009-03-19 21:55:03 +00:00
|
|
|
'short messages about their life and interests. '),
|
|
|
|
$this->group->nickname);
|
|
|
|
}
|
2009-01-23 04:10:40 +00:00
|
|
|
$this->elementStart('div', array('id' => 'anon_notice'));
|
2009-01-23 03:19:03 +00:00
|
|
|
$this->raw(common_markup_to_html($m));
|
2009-01-23 03:31:50 +00:00
|
|
|
$this->elementEnd('div');
|
2009-01-23 03:19:03 +00:00
|
|
|
}
|
2011-03-28 21:24:17 +01:00
|
|
|
|
|
|
|
function noticeFormOptions()
|
|
|
|
{
|
|
|
|
$options = parent::noticeFormOptions();
|
|
|
|
$cur = common_current_user();
|
|
|
|
|
|
|
|
if (!empty($cur) && $cur->isMember($this->group)) {
|
|
|
|
$options['to_group'] = $this->group;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $options;
|
|
|
|
}
|
2009-01-21 22:44:27 +00:00
|
|
|
}
|
2009-06-29 15:22:17 +01:00
|
|
|
|
|
|
|
class GroupAdminSection extends ProfileSection
|
|
|
|
{
|
|
|
|
var $group;
|
|
|
|
|
|
|
|
function __construct($out, $group)
|
|
|
|
{
|
|
|
|
parent::__construct($out);
|
|
|
|
$this->group = $group;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getProfiles()
|
|
|
|
{
|
|
|
|
return $this->group->getAdmins();
|
|
|
|
}
|
|
|
|
|
|
|
|
function title()
|
|
|
|
{
|
2011-03-24 10:47:57 +00:00
|
|
|
// TRANS: Title for list of group administrators on a group page.
|
|
|
|
return _m('TITLE','Admins');
|
2009-06-29 15:22:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function divId()
|
|
|
|
{
|
|
|
|
return 'group_admins';
|
|
|
|
}
|
|
|
|
|
|
|
|
function moreUrl()
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
2009-07-10 22:00:27 +01:00
|
|
|
}
|
2010-04-05 15:47:07 +01:00
|
|
|
|
|
|
|
class GroupMembersMiniList extends ProfileMiniList
|
|
|
|
{
|
|
|
|
function newListItem($profile)
|
|
|
|
{
|
|
|
|
return new GroupMembersMiniListItem($profile, $this->action);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class GroupMembersMiniListItem extends ProfileMiniListItem
|
|
|
|
{
|
|
|
|
function linkAttributes()
|
|
|
|
{
|
|
|
|
$aAttrs = parent::linkAttributes();
|
|
|
|
|
|
|
|
if (common_config('nofollow', 'members')) {
|
|
|
|
$aAttrs['rel'] .= ' nofollow';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $aAttrs;
|
|
|
|
}
|
|
|
|
}
|
2011-04-15 23:54:35 +01:00
|
|
|
|
|
|
|
class ThreadingGroupNoticeStream extends ThreadingNoticeStream
|
|
|
|
{
|
|
|
|
function __construct($group, $profile)
|
|
|
|
{
|
|
|
|
parent::__construct(new GroupNoticeStream($group, $profile));
|
|
|
|
}
|
|
|
|
}
|