diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-06-14 16:17:44 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-06-14 16:17:44 -0700 |
commit | f8da15bf41b07a46b1fbe5323e2b8136d42c5b31 (patch) | |
tree | 987d684517add55c4f344031dc2f1a1fa589375f /classes/User_group.php | |
parent | bd26a80d45542c6b42f56ecf5472198f4600618b (diff) |
Allow users to be unblocked from a group
List users who are blocked from joining a group. Add a form to let
them be unblocked. Add an action that removes the block. Includes
changes to group and groupblock classes.
Diffstat (limited to 'classes/User_group.php')
-rw-r--r-- | classes/User_group.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/classes/User_group.php b/classes/User_group.php index 1be34b60b..9f9977755 100644 --- a/classes/User_group.php +++ b/classes/User_group.php @@ -125,6 +125,29 @@ class User_group extends Memcached_DataObject return $members; } + function getBlocked($offset=0, $limit=null) + { + $qry = + 'SELECT profile.* ' . + 'FROM profile JOIN group_block '. + 'ON profile.id = group_block.blocked ' . + 'WHERE group_block.group_id = %d ' . + 'ORDER BY group_block.modified DESC '; + + if ($limit != null) { + if (common_config('db','type') == 'pgsql') { + $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; + } else { + $qry .= ' LIMIT ' . $offset . ', ' . $limit; + } + } + + $blocked = new Profile(); + + $blocked->query(sprintf($qry, $this->id)); + return $blocked; + } + function setOriginal($filename) { $imagefile = new ImageFile($this->id, Avatar::path($filename)); |