function spaces_shoutbox_context_define in Spaces 5.2
Implementation of hook_context_define().
File
- spaces_shoutbox/
spaces_shoutbox.module, line 6
Code
function spaces_shoutbox_context_define() {
$items = array();
$items[] = array(
'namespace' => 'spaces',
'attribute' => 'feature',
'value' => 'shoutbox',
'spaces' => array(
'label' => t('Shoutbox'),
'description' => t('A shoutbox for informal message blasts.'),
'types' => array(
'og',
),
),
);
return $items;
}