You are here

function http_response_headers_permission in HTTP Response Headers 7

Implements hook_permission().

File

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

Code

function http_response_headers_permission() {
  return array(
    'administer http response headers' => array(
      'title' => t('Administer HTTP response headers'),
    ),
  );
}