* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class GroupmembersAction extends GroupDesignAction
{
var $page = null;
}
if (!$nickname) {
+ // TRANS: Client error displayed when trying to view group members without providing a group nickname.
$this->clientError(_('No nickname.'), 404);
return false;
}
$local = Local_group::staticGet('nickname', $nickname);
if (!$local) {
+ // TRANS: Client error displayed when trying to view group members for a non-existing group.
$this->clientError(_('No such group.'), 404);
return false;
}
$this->group = User_group::staticGet('id', $local->group_id);
if (!$this->group) {
+ // TRANS: Client error displayed when trying to view group members for an object that is not a group.
$this->clientError(_('No such group.'), 404);
return false;
}
function showPageNotice()
{
$this->element('p', 'instructions',
+ // TRANS: Page notice for group members page.
_('A list of the users in this group.'));
}
function showFullName()
{
+ // @todo FIXME: i18n issue. Message should be "%s (Admin)" instead of patchwork.
parent::showFullName();
if ($this->profile->isAdmin($this->group)) {
$this->out->text(' ');
+ // TRANS: Suffix for group members that are group administrators. Separated from user name with a space.
+ // TRANS: This is a to be addressed i18n issue.
$this->out->element('span', 'role', _('Admin'));
}
}
/**
* Fetch necessary return-to arguments for the profile forms
* to return to this list when they're done.
- *
+ *
* @return array
*/
protected function returnToArgs()
*
* @see BlockForm
*/
-
class GroupBlockForm extends Form
{
/**
* @param User_group $group group to block user from
* @param array $args return-to args
*/
-
function __construct($out=null, $profile=null, $group=null, $args=null)
{
parent::__construct($out);
*
* @return int ID of the form
*/
-
function id()
{
// This should be unique for the page.
*
* @return string class of the form
*/
-
function formClass()
{
return 'form_group_block';
*
* @return string URL of the action
*/
-
function action()
{
return common_local_url('groupblock');
*/
function formLegend()
{
+ // TRANS: Form legend for form to block user from a group.
$this->out->element('legend', null, _('Block user from group'));
}
*
* @return void
*/
-
function formData()
{
$this->out->hidden('blockto-' . $this->profile->id,
*
* @return void
*/
-
function formActions()
{
$this->out->submit(
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class MakeAdminForm extends Form
{
/**
* Profile of user to block
*/
-
var $profile = null;
/**
* Group to block the user from
*/
-
var $group = null;
/**
* Return-to args
*/
-
var $args = null;
/**
* @param User_group $group group to block user from
* @param array $args return-to args
*/
-
function __construct($out=null, $profile=null, $group=null, $args=null)
{
parent::__construct($out);
*
* @return int ID of the form
*/
-
function id()
{
// This should be unique for the page.
*
* @return string class of the form
*/
-
function formClass()
{
return 'form_make_admin';
*
* @return string URL of the action
*/
-
function action()
{
return common_local_url('makeadmin', array('nickname' => $this->group->nickname));
*
* @return void
*/
-
function formLegend()
{
+ // TRANS: Form legend for form to make a user a group admin.
$this->out->element('legend', null, _('Make user an admin of the group'));
}
*
* @return void
*/
-
function formData()
{
$this->out->hidden('profileid-' . $this->profile->id,
*
* @return void
*/
-
function formActions()
{
$this->out->submit(