groupmemberlist.php 391 B

1234567891011121314151617181920
  1. <?php
  2. // @todo FIXME: add documentation.
  3. class GroupMemberList extends ProfileList
  4. {
  5. var $group = null;
  6. function __construct($profile, $group, $action)
  7. {
  8. parent::__construct($profile, $action);
  9. $this->group = $group;
  10. }
  11. function newListItem(Profile $profile)
  12. {
  13. return new GroupMemberListItem($profile, $this->group, $this->action);
  14. }
  15. }