function securesite_permission in Secure Site 8
Same name and namespace in other branches
- 7.2 securesite.module \securesite_permission()
Implements hook_permission().
File
- ./
securesite.module, line 48 - 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.'),
),
);
}