You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
engelsystem/includes/model/UserGroups_model.php

23 lines
419 B
PHTML

<?php
use Engelsystem\Database\DB;
/**
* Returns users groups
8 years ago
*
* @param int $userId
* @return array[]
*/
function User_groups($userId)
8 years ago
{
return DB::select('
SELECT `Groups`.*
FROM `UserGroups`
JOIN `Groups` ON `Groups`.`UID`=`UserGroups`.`group_id`
WHERE `UserGroups`.`uid`=?
ORDER BY `UserGroups`.`group_id`
',
[$userId]
);
}