function filedepot_getGroupOptions in filedepot 7
Same name and namespace in other branches
- 6 lib-common.php \filedepot_getGroupOptions()
1 call to filedepot_getGroupOptions()
File
- ./
lib-common.php, line 311 - lib-common.php Common library of functions for the applications
Code
function filedepot_getGroupOptions() {
global $user;
$retval = '';
$groups = filedepot_og_get_user_groups();
foreach ($groups as $grpid) {
$entity = filedepot_og_get_group_entity($grpid);
$retval .= '<option value="' . $grpid . '">' . $entity->title . '</option>';
}
return $retval;
}