function _spaces_group_options in Spaces 5
Define options for group features.
4 calls to _spaces_group_options()
- spaces_calendar_context_define in spaces_calendar/
spaces_calendar.module - Implementation of hook_context_define()
- spaces_casetracker_context_define in spaces_casetracker/
spaces_casetracker.module - hook_context_define()
- spaces_core_context_define in spaces_core/
spaces_core.module - hook_context_define()
- spaces_ui_context_define in ./
spaces_ui.module - Implementation of hook_context_define().
File
- ./
spaces.module, line 1176
Code
function _spaces_group_options() {
$options = array(
0 => t('Disabled'),
SPACES_PRIVATE => t('Private'),
SPACES_PUBLIC => t('Public'),
);
return $options;
}