You are here

function story_menu in Drupal 4

Implementation of hook_menu().

File

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

Code

function story_menu($may_cache) {
  $items = array();
  if ($may_cache) {
    $items[] = array(
      'path' => 'node/add/story',
      'title' => t('story'),
      'access' => user_access('create stories'),
    );
  }
  return $items;
}