You are here

function saml_sp_permission in SAML Service Provider 7

Same name and namespace in other branches
  1. 7.2 saml_sp.module \saml_sp_permission()
  2. 7.3 saml_sp.module \saml_sp_permission()

Implements hook_permission().

File

./saml_sp.module, line 38
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,
    ),
  );
}