blog_node_info()
drupal/modules/blog/blog.module, line 11
Implementation of hook_node_info().
function blog_node_info() {
return array(
'blog' => array(
'name' => t('Blog entry'),
'base' => 'blog',
'description' => t('A <em>blog entry</em> is a single post to an online journal, or <em>blog</em>.'),
)
);
}