function imce_profile_options in IMCE 6
Same name and namespace in other branches
- 6.2 inc/imce.admin.inc \imce_profile_options()
- 7 inc/imce.admin.inc \imce_profile_options()
Profile options.
1 call to imce_profile_options()
- imce_role_form in inc/
admin.inc - Role-profile form
File
- inc/
admin.inc, line 504
Code
function imce_profile_options() {
$options = array(
t('none'),
);
foreach (variable_get('imce_profiles', array()) as $pid => $profile) {
$options[$pid] = $profile['name'];
}
return $options;
}