2011-03-22 00:17:18 +00:00
|
|
|
<?php
|
2011-03-24 08:59:01 +00:00
|
|
|
// @todo FIXME: add documentation.
|
2011-03-22 00:17:18 +00:00
|
|
|
|
|
|
|
class GroupMemberList extends ProfileList
|
|
|
|
{
|
|
|
|
var $group = null;
|
|
|
|
|
|
|
|
function __construct($profile, $group, $action)
|
|
|
|
{
|
|
|
|
parent::__construct($profile, $action);
|
|
|
|
|
|
|
|
$this->group = $group;
|
|
|
|
}
|
|
|
|
|
2017-03-17 02:57:16 +00:00
|
|
|
function newListItem(Profile $profile)
|
2011-03-22 00:17:18 +00:00
|
|
|
{
|
|
|
|
return new GroupMemberListItem($profile, $this->group, $this->action);
|
|
|
|
}
|
|
|
|
}
|