Breaking class definitions out into separate files and fixing typing

This commit is contained in:
Mikael Nordfeldth
2016-01-06 19:46:56 +01:00
parent f1c4c64cd9
commit 47c7e1b875
7 changed files with 103 additions and 87 deletions

35
lib/groupadminsection.php Normal file
View 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;
}
}