diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-30 20:20:46 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-08-11 16:25:27 -0400 |
commit | 8d1eb674ec37651aa8b67eec51de6a9f08523fd9 (patch) | |
tree | 8f90e49d7031859d568750977a3949325a0679bb /lib/group/database.php | |
parent | baa0b4d530db8a585692c222d5f5cf185438c68a (diff) | |
download | nextcloud-server-8d1eb674ec37651aa8b67eec51de6a9f08523fd9.tar.gz nextcloud-server-8d1eb674ec37651aa8b67eec51de6a9f08523fd9.zip |
Add search, limit, and offset parameters to getUsers() and getGroups()
Diffstat (limited to 'lib/group/database.php')
-rw-r--r-- | lib/group/database.php | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/lib/group/database.php b/lib/group/database.php index 2770ec185c4..6314a127438 100644 --- a/lib/group/database.php +++ b/lib/group/database.php @@ -164,15 +164,13 @@ class OC_Group_Database extends OC_Group_Backend { * * Returns a list with all groups */ - public function getGroups(){ - $query = OC_DB::prepare( "SELECT gid FROM `*PREFIX*groups`" ); - $result = $query->execute(); - + public function getGroups($search = '', $limit = 10, $offset = 0) { + $query = OC_DB::prepare('SELECT gid FROM *PREFIX*groups WHERE gid LIKE ? LIMIT '.$limit.' OFFSET '.$offset); + $result = $query->execute(array($search.'%')); $groups = array(); - while( $row = $result->fetchRow()){ - $groups[] = $row["gid"]; + while ($row = $result->fetchRow()) { + $groups[] = $row['gid']; } - return $groups; } |