function saml_sp_permission in SAML Service Provider 7.3
Same name and namespace in other branches
- 7 saml_sp.module \saml_sp_permission()
- 7.2 saml_sp.module \saml_sp_permission()
Implements hook_permission().
File
- ./
saml_sp.module, line 68 - SAML Service Provider
Code
function saml_sp_permission() {
return array(
'configure saml sp' => array(
'title' => t('Configure SAML SP'),
'description' => t('Configure the SAML Service Provider integration.'),
'restrict access' => TRUE,
),
);
}