groupmemberlist.php 436 B

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