function forum_node_info

Same name and namespace in other branches
  1. 7.x drupal-7.x/modules/forum/forum.module \forum_node_info()

Implementation of hook_node_info().

Archivo

drupal-6.x/modules/forum/forum.module, line 298
Enable threaded discussions about general topics.

Código

function forum_node_info() {
  return array(
    'forum' => array(
      'name' => t('Forum topic'),
      'module' => 'forum',
      'description' => t('A <em>forum topic</em> is the initial post to a new discussion thread within a forum.'),
      'title_label' => t('Subject'),
    ),
  );
}