function cms_blog_node_info in Glazed CMS Blog 7
Implements hook_node_info().
File
- ./
cms_blog.features.inc, line 29 - cms_blog.features.inc
Code
function cms_blog_node_info() {
$items = array(
'blog' => array(
'name' => t('Blog'),
'base' => 'node_content',
'description' => t('Page with tags and categories support for creating blog style content. The <em>Glazed Drupal CMS Magazine</em> module adds Magazine features to this component.'),
'has_title' => '1',
'title_label' => t('Title'),
'help' => '',
),
);
drupal_alter('node_info', $items);
return $items;
}