You are here

function hsts_permission in HTTP Strict Transport Security 7

Implements hook_perm().

File

./hsts.module, line 37
Main module file for the HSTS (HTTP Strict Transport Security) module.

Code

function hsts_permission() {
  return array(
    'administer strict transport security' => array(
      'title' => t('Administer Strict Transport Security Settings'),
      'description' => t('Allow a user to enable/disable the HSTS header as well as the header values.'),
    ),
  );
}