function vote_storylink_node_info in Vote Up/Down 5
Implementation of hook_node_info().
File
- ./
vote_storylink.module, line 22
Code
function vote_storylink_node_info() {
return array(
'storylink' => array(
'name' => t('Storylink'),
'module' => 'vote_storylink',
'has_title' => TRUE,
'has_body' => TRUE,
'description' => t('A story link is an article whose main purpose is to create links to other resources -- websites, pages, documents, etc.'),
),
);
}