function quotes_node_info in Quotes 5
Same name and namespace in other branches
- 6 quotes.module \quotes_node_info()
- 7 quotes.module \quotes_node_info()
Implementation of hook_node_info().
File
- ./
quotes.module, line 218
Code
function quotes_node_info() {
return array(
'quotes' => array(
'name' => t('Quotes'),
'module' => 'quotes',
'description' => t('A quote is a famous, infamous, humorous, witty, or otherwise noteworthy quotation or fortune file entry. Users can maintain personal lists of quotations and display quotes in one or more blocks. Quotes can be entered one at a time or mass imported in either tab-separated text or fortune file format.'),
),
);
}