function quotes_node_info in Quotes 6
Same name and namespace in other branches
- 5 quotes.module \quotes_node_info()
 - 7 quotes.module \quotes_node_info()
 
Implementation of hook_node_info().
File
- ./
quotes.module, line 365  - The quotes module allows users to maintain a list of quotes that can be displayed in any number of administrator-defined quote blocks.
 
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.'),
    ),
  );
}