You are here

function mailhandler_default_node_info in Mailhandler 6.2

Same name and namespace in other branches
  1. 7.2 modules/mailhandler_default/mailhandler_default.features.inc \mailhandler_default_node_info()

Implementation of hook_node_info().

File

modules/mailhandler_default/mailhandler_default.features.inc, line 26
Feature provides a default Mailhandler importer to produce nodes from emails.

Code

function mailhandler_default_node_info() {
  $items = array(
    'mailhandler_source' => array(
      'name' => t('Mailhandler source'),
      'module' => 'features',
      'description' => t('A source node for a Mailhandler importer, allowing for automatic retrieval on cron.'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'has_body' => '0',
      'body_label' => '',
      'min_word_count' => '0',
      'help' => '',
    ),
  );
  return $items;
}