You are here

function edit_limit_menu in Edit Limit 6

Same name and namespace in other branches
  1. 7 edit_limit.module \edit_limit_menu()

Implementation of hook_menu().

File

./edit_limit.module, line 16
edit_limit.module Primary module file for Edit Limit. This contains all the hooks needed to run the module.

Code

function edit_limit_menu() {
  $items['admin/content/edit_limit'] = array(
    'title' => 'Edit Limit',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'edit_limit_settings',
    ),
    'access arguments' => array(
      'administer edit limit',
    ),
    'file' => 'edit_limit.admin.inc',
  );
  return $items;
}