You are here

function feeds_news_node_info in Feeds 7.2

Same name and namespace in other branches
  1. 8.2 feeds_news/feeds_news.features.inc \feeds_news_node_info()
  2. 6 feeds_news/feeds_news.features.inc \feeds_news_node_info()
  3. 7 feeds_news/feeds_news.features.inc \feeds_news_node_info()

Implements hook_node_info().

File

feeds_news/feeds_news.features.inc, line 27
feeds_news.features.inc

Code

function feeds_news_node_info() {
  $items = array(
    'feed' => array(
      'name' => t('Feed'),
      'base' => 'node_content',
      'description' => t('Subscribe to RSS or Atom feeds. Creates nodes of the content type "Feed item" from feed content.'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
    'feed_item' => array(
      'name' => t('Feed item'),
      'base' => 'node_content',
      'description' => t('This content type is being used for automatically aggregated content from feeds.'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
  );
  drupal_alter('node_info', $items);
  return $items;
}