function spaces_shoutbox_node_info in Spaces 5.2
Same name and namespace in other branches
- 5 spaces_shoutbox/spaces_shoutbox.module \spaces_shoutbox_node_info()
Implementation of hook_node_info()
File
- spaces_shoutbox/
spaces_shoutbox.module, line 24
Code
function spaces_shoutbox_node_info() {
return array(
'shout' => array(
'name' => t('Shout'),
'module' => 'spaces_shoutbox',
'description' => t('A shoutbox shout.'),
'locked' => true,
),
);
}