Newer
Older
<?php
include_once("include/db.php");
# Unlink user from group
function removeAdminUserGroup($params) {
$res = DBDo("DELETE FROM users_to_groups WHERE ID = ?",array($params[0]));
if (!is_numeric($res)) {
return $res;
}
return NULL;
}
# Return list of groups
function getAdminUserGroups($params) {
global $db;
# Filters and sorts are the same here
$filtersorts = array(
'Name' => 'groups.Name'
);
$res = DBSelectSearch("
SELECT
users_to_groups.ID, groups.Name
FROM
users_to_groups, groups
WHERE
groups.ID = users_to_groups.GroupID
AND users_to_groups.UserID = ".DBQuote($params[0])."
",$params[1],$filtersorts,$filtersorts);
$sth = $res[0]; $numResults = $res[1];
# If STH is blank, return the error back to whoever requested the data
$resultArray = array();
# loop through rows
while ($row = $sth->fetchObject()) {
$item = array();
$item['ID'] = $row->id;
$item['Name'] = $row->name;
# push this row onto array
array_push($resultArray,$item);
}
return array($resultArray,$numResults);