You are here

function commerce_kickstart_blog_node_info in Commerce Kickstart 7.2

Implements hook_node_info().

File

modules/commerce_kickstart/commerce_kickstart_blog/commerce_kickstart_blog.features.inc, line 65
commerce_kickstart_blog.features.inc

Code

function commerce_kickstart_blog_node_info() {
  $items = array(
    'blog_post' => array(
      'name' => t('Blog Post'),
      'base' => 'node_content',
      'description' => t('Use <em>blog post</em> to write regular content.'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
  );
  drupal_alter('node_info', $items);
  return $items;
}