You are here

function samlauth_login in SAML Authentication 7

Menu callback for /saml/login.

1 string reference to 'samlauth_login'
samlauth_menu in ./samlauth.module
Implements hook_menu().

File

./samlauth.module, line 236
Provides SAML authentication capabilities.

Code

function samlauth_login() {
  $auth = samlauth_get_saml2_auth();
  $auth
    ->login('/', array(), FALSE, FALSE, FALSE, variable_get('samlauth_set_nameidpolicy', TRUE));
}