You are here

function securesite_permission in Secure Site 7.2

Same name and namespace in other branches
  1. 8 securesite.module \securesite_permission()

Implements hook_permission().

File

./securesite.module, line 75
Enables HTTP authentication or an HTML form to restrict site access.

Code

function securesite_permission() {
  return array(
    'access secured pages' => array(
      'title' => t('Access secure pages'),
      'description' => t('Allow the user to access pages after entering their credentials in the Secure Site log-ing form.'),
    ),
  );
}