You are here

function paging_menu in Paging 7

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

Implements hook_menu().

File

./paging.module, line 31
Allows a node to be broken into multiple pages via a tag.

Code

function paging_menu() {
  $items = array();
  $items['admin/config/content/paging'] = array(
    'title' => 'Paging',
    'description' => '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',
    ),
    'file' => 'paging.admin.inc',
  );
  return $items;
}