You are here

function footnotes_field_menu in Footnotes 7.2

Same name and namespace in other branches
  1. 7.3 footnotes_field/footnotes_field.module \footnotes_field_menu()

Implements hook_menu().

File

footnotes_field/footnotes_field.module, line 20
Hooks and general logic for the Footnotes field module.

Code

function footnotes_field_menu() {
  $items['admin/config/content/footnotes'] = array(
    'title' => 'Footnotes',
    'description' => 'Config page for footnotes fields/blocks',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      '_footnotes_field_admin_form',
    ),
    'access arguments' => array(
      'administer footnotes fields',
    ),
    'file' => 'includes/footnotes_field.admin.inc',
  );
  return $items;
}