You are here

function page_menu in Drupal 4

Implementation of hook_menu().

File

modules/page.module, line 70
Enables the creation of pages that can be added to the navigation system.

Code

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