3be26565fb
i18n/L10n updates. Superfluous whitespace removed. Add FIXME in files with missing documentation.
20 lines
383 B
PHP
20 lines
383 B
PHP
<?php
|
|
// @todo FIXME: add documentation.
|
|
|
|
class GroupMemberList extends ProfileList
|
|
{
|
|
var $group = null;
|
|
|
|
function __construct($profile, $group, $action)
|
|
{
|
|
parent::__construct($profile, $action);
|
|
|
|
$this->group = $group;
|
|
}
|
|
|
|
function newListItem($profile)
|
|
{
|
|
return new GroupMemberListItem($profile, $this->group, $this->action);
|
|
}
|
|
}
|