[LIB_REFACTOR] Moving files into separate semantic categories

This commit is contained in:
Miguel Dantas
2019-08-22 18:06:14 +01:00
committed by Diogo Peralta Cordeiro
parent 5e16606358
commit 2ab2e22a36
329 changed files with 52 additions and 52 deletions

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;
}
}