]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/groupmemberlist.php
Split up some list/form classes, and get the 'approve' and 'cancel' links on group...
[quix0rs-gnu-social.git] / lib / groupmemberlist.php
1 <?php
2
3 class GroupMemberList extends ProfileList
4 {
5     var $group = null;
6
7     function __construct($profile, $group, $action)
8     {
9         parent::__construct($profile, $action);
10
11         $this->group = $group;
12     }
13
14     function newListItem($profile)
15     {
16         return new GroupMemberListItem($profile, $this->group, $this->action);
17     }
18 }