You are here

function shib_auth_isDebug in Shibboleth Authentication 6.3

1 call to shib_auth_isDebug()
shib_auth_init in ./shib_auth.module
Create a new user based on informations from the Shibboleth handler if it's necessary or log in.

File

./shib_auth.module, line 33
This is a Shibboleth authentication module.

Code

function shib_auth_isDebug() {
  return variable_get('shib_auth_debug_state', FALSE) && drupal_substr($_GET['q'], 0, drupal_strlen(variable_get('shib_auth_debug_url', ''))) == variable_get('shib_auth_debug_url', '');
}