function spaces_shoutbox_spaces_settings in Spaces 5
Implementation of hook_spaces_settings()
File
- spaces_shoutbox/
spaces_shoutbox.module, line 33
Code
function spaces_shoutbox_spaces_settings() {
$items = array();
$items['shoutbox'] = array(
'label' => t('Shoutbox'),
'description' => t('A shoutbox for informal message blasts.'),
'options' => array(
0 => t('Disabled'),
1 => t('Enabled'),
),
);
return $items;
}