You are here

function http_response_headers_menu in HTTP Response Headers 7

Implements hook_menu().

File

./http_response_headers.module, line 85
Contains HTTP response headers.

Code

function http_response_headers_menu() {
  $items['admin/config/system/http-response-headers/settings'] = array(
    'title' => 'Settings',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'http_response_headers_settings_form',
    ),
    'access arguments' => array(
      'administer http response headers',
    ),
    'type' => MENU_LOCAL_TASK,
    'file' => 'http_response_headers.admin.inc',
  );
  return $items;
}