You are here

function quotes_node_info in Quotes 7

Same name and namespace in other branches
  1. 5 quotes.module \quotes_node_info()
  2. 6 quotes.module \quotes_node_info()

Implements hook_node_info().

File

./quotes.module, line 446
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'),
      'base' => '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.'),
      'has_title' => TRUE,
    ),
  );
}