1234567891011121314151617181920 |
- <?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 $profile)
- {
- return new GroupMemberListItem($profile, $this->group, $this->action);
- }
- }
|