function filedepot_getRoleOptions in filedepot 7
Same name and namespace in other branches
- 6 lib-common.php \filedepot_getRoleOptions()
2 calls to filedepot_getRoleOptions()
File
- ./
lib-common.php, line 302 - lib-common.php Common library of functions for the applications
Code
function filedepot_getRoleOptions() {
$retval = '';
$query = db_query("SELECT r.rid, r.name FROM {role} r ");
while ($r = $query
->fetchObject()) {
$retval .= '<option value = "' . $r->rid . '">' . $r->name . '</option>';
}
return $retval;
}