You are here

function http_auth_permission in HTTP Auth 7

Implements hook_permission().

File

./http_auth.module, line 29
Enables Drupal to add HTTP Auth from frontend on all over the site/pages.

Code

function http_auth_permission() {
  $permissions['administer http auth module'] = array(
    'title' => t('HTTP Auth'),
    'restrict access' => TRUE,
    'description' => t('Users who have this permission can change the HTTP Auth settings.'),
  );
  return $permissions;
}