You are here

function panopoly_news_node_info in Panopoly News 7

Implements hook_node_info().

File

./panopoly_news.features.inc, line 35
panopoly_news.features.inc

Code

function panopoly_news_node_info() {
  $items = array(
    'panopoly_news_article' => array(
      'name' => t('News Article'),
      'base' => 'node_content',
      'description' => t('An article of news to be featured and used widely on the site!'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
  );
  return $items;
}