Breaking class definitions out into separate files and fixing typing
This commit is contained in:
parent
f1c4c64cd9
commit
47c7e1b875
|
@ -27,9 +27,7 @@
|
||||||
* @link http://status.net/
|
* @link http://status.net/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
define('MEMBERS_PER_SECTION', 27);
|
define('MEMBERS_PER_SECTION', 27);
|
||||||
|
|
||||||
|
@ -290,87 +288,3 @@ class GroupAction extends Action
|
||||||
return $this->group;
|
return $this->group;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class GroupAdminSection extends ProfileSection
|
|
||||||
{
|
|
||||||
var $group;
|
|
||||||
|
|
||||||
function __construct($out, $group)
|
|
||||||
{
|
|
||||||
parent::__construct($out);
|
|
||||||
$this->group = $group;
|
|
||||||
}
|
|
||||||
|
|
||||||
function getProfiles()
|
|
||||||
{
|
|
||||||
return $this->group->getAdmins();
|
|
||||||
}
|
|
||||||
|
|
||||||
function title()
|
|
||||||
{
|
|
||||||
// TRANS: Title for list of group administrators on a group page.
|
|
||||||
return _m('TITLE','Admins');
|
|
||||||
}
|
|
||||||
|
|
||||||
function divId()
|
|
||||||
{
|
|
||||||
return 'group_admins';
|
|
||||||
}
|
|
||||||
|
|
||||||
function moreUrl()
|
|
||||||
{
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class GroupBlockedMiniList extends ProfileMiniList
|
|
||||||
{
|
|
||||||
function newListItem($profile)
|
|
||||||
{
|
|
||||||
return new GroupBlockedMiniListItem($profile, $this->action);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class GroupBlockedMiniListItem extends ProfileMiniListItem
|
|
||||||
{
|
|
||||||
function linkAttributes()
|
|
||||||
{
|
|
||||||
$aAttrs = parent::linkAttributes();
|
|
||||||
|
|
||||||
if (common_config('nofollow', 'members')) {
|
|
||||||
$aAttrs['rel'] .= ' nofollow';
|
|
||||||
}
|
|
||||||
|
|
||||||
return $aAttrs;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ThreadingGroupNoticeStream extends ThreadingNoticeStream
|
|
||||||
{
|
|
||||||
function __construct($group, $profile)
|
|
||||||
{
|
|
||||||
parent::__construct(new GroupNoticeStream($group, $profile));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
35
lib/groupadminsection.php
Normal file
35
lib/groupadminsection.php
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
||||||
|
|
||||||
|
class GroupAdminSection extends ProfileSection
|
||||||
|
{
|
||||||
|
var $group;
|
||||||
|
|
||||||
|
function __construct($out, $group)
|
||||||
|
{
|
||||||
|
parent::__construct($out);
|
||||||
|
$this->group = $group;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getProfiles()
|
||||||
|
{
|
||||||
|
return $this->group->getAdmins();
|
||||||
|
}
|
||||||
|
|
||||||
|
function title()
|
||||||
|
{
|
||||||
|
// TRANS: Title for list of group administrators on a group page.
|
||||||
|
return _m('TITLE','Admins');
|
||||||
|
}
|
||||||
|
|
||||||
|
function divId()
|
||||||
|
{
|
||||||
|
return 'group_admins';
|
||||||
|
}
|
||||||
|
|
||||||
|
function moreUrl()
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
11
lib/groupblockedminilist.php
Normal file
11
lib/groupblockedminilist.php
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
||||||
|
|
||||||
|
class GroupBlockedMiniList extends ProfileMiniList
|
||||||
|
{
|
||||||
|
function newListItem(Profile $profile)
|
||||||
|
{
|
||||||
|
return new GroupBlockedMiniListItem($profile, $this->action);
|
||||||
|
}
|
||||||
|
}
|
17
lib/groupblockedminilistitem.php
Normal file
17
lib/groupblockedminilistitem.php
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
||||||
|
|
||||||
|
class GroupBlockedMiniListItem extends ProfileMiniListItem
|
||||||
|
{
|
||||||
|
function linkAttributes()
|
||||||
|
{
|
||||||
|
$aAttrs = parent::linkAttributes();
|
||||||
|
|
||||||
|
if (common_config('nofollow', 'members')) {
|
||||||
|
$aAttrs['rel'] .= ' nofollow';
|
||||||
|
}
|
||||||
|
|
||||||
|
return $aAttrs;
|
||||||
|
}
|
||||||
|
}
|
11
lib/groupmembersminilist.php
Normal file
11
lib/groupmembersminilist.php
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
||||||
|
|
||||||
|
class GroupMembersMiniList extends ProfileMiniList
|
||||||
|
{
|
||||||
|
function newListItem(Profile $profile)
|
||||||
|
{
|
||||||
|
return new GroupMembersMiniListItem($profile, $this->action);
|
||||||
|
}
|
||||||
|
}
|
17
lib/groupmembersminilistitem.php
Normal file
17
lib/groupmembersminilistitem.php
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
||||||
|
|
||||||
|
class GroupMembersMiniListItem extends ProfileMiniListItem
|
||||||
|
{
|
||||||
|
function linkAttributes()
|
||||||
|
{
|
||||||
|
$aAttrs = parent::linkAttributes();
|
||||||
|
|
||||||
|
if (common_config('nofollow', 'members')) {
|
||||||
|
$aAttrs['rel'] .= ' nofollow';
|
||||||
|
}
|
||||||
|
|
||||||
|
return $aAttrs;
|
||||||
|
}
|
||||||
|
}
|
11
lib/threadinggroupnoticestream.php
Normal file
11
lib/threadinggroupnoticestream.php
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
||||||
|
|
||||||
|
class ThreadingGroupNoticeStream extends ThreadingNoticeStream
|
||||||
|
{
|
||||||
|
function __construct($group, $profile)
|
||||||
|
{
|
||||||
|
parent::__construct(new GroupNoticeStream($group, $profile));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user