function filedepot_getRoleOptions in filedepot 6
Same name and namespace in other branches
- 7 lib-common.php \filedepot_getRoleOptions()
2 calls to filedepot_getRoleOptions()
File
- ./
lib-common.php, line 289 - 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 = db_fetch_object($query)) {
$retval .= '<option value="' . $r->rid . '">' . $r->name . '</option>';
}
return $retval;
}