You are here

function story_node_info in Drupal 4

Implementation of hook_node_info().

File

modules/story.module, line 34
Enables users to submit stories, articles or similar content.

Code

function story_node_info() {
  return array(
    'story' => array(
      'name' => t('story'),
      'base' => 'story',
    ),
  );
}