function blog_node_info

Implements hook_node_info().

File

modules/blog/blog.module, line 11

Code

function blog_node_info() {
    return array(
        'blog' => array(
            'name' => t('Blog entry'),
            'base' => 'blog',
            'description' => t('Use for multi-user blogs. Every user gets a personal blog.'),
        ),
    );
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.