function cms_news_node_info in Glazed CMS News 7
Implements hook_node_info().
File
- ./
cms_news.features.inc, line 26 - cms_news.features.inc
Code
function cms_news_node_info() {
$items = array(
'news' => array(
'name' => t('News'),
'base' => 'node_content',
'description' => t('Simple page for news without the additional features you expect in a blog (tagging, byline, etc.)'),
'has_title' => '1',
'title_label' => t('Title'),
'help' => '',
),
);
drupal_alter('node_info', $items);
return $items;
}