You are here

function paging_menu in Paging 6

Same name and namespace in other branches
  1. 5 paging.module \paging_menu()
  2. 7 paging.module \paging_menu()

Implementation of hook_menu().

File

./paging.module, line 55
Allows users to use a tag to break up a node into multiple pages.

Code

function paging_menu() {
  $items = array();
  $items['admin/settings/paging'] = array(
    'title' => t('Paging'),
    'description' => t('Enable or disable paging, configure separator string, toggle automatic paging and more for each content types.'),
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'paging_settings',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
  );
  return $items;
}