You are here

function _simplesaml_auth_debug in simpleSAMLphp Authentication 7.2

Same name and namespace in other branches
  1. 6.3 simplesamlphp_auth.module \_simplesaml_auth_debug()
  2. 6.2 simplesamlphp_auth.module \_simplesaml_auth_debug()
  3. 7 simplesamlphp_auth.module \_simplesaml_auth_debug()

Debug the form API workflow.

6 calls to _simplesaml_auth_debug()
simplesamlphp_auth_init in ./simplesamlphp_auth.module
Implements hook_init().
simplesamlphp_auth_user_insert in ./simplesamlphp_auth.module
Implements hook_user_insert().
_simplesamlphp_auth_evaulaterolerule in ./simplesamlphp_auth.module
Evaluates a role rule. The rules work as follows: = does an exact match on an attribute and will iterate over array values if the array is multivalued. @= matches the domain portion of an email address. It assumes the attribute is a string, and will…
_simplesamlphp_auth_forcehttps_rewrite in ./simplesamlphp_auth.module
Forces HTTPS connections.
_simplesamlphp_auth_get_authname in ./simplesamlphp_auth.module
Gets the authname attribute from the SAML assertion.

... See full list

File

./simplesamlphp_auth.module, line 824
simpleSAMLphp authentication module for Drupal.

Code

function _simplesaml_auth_debug($message) {
  watchdog('simplesamlphp', $message, NULL, WATCHDOG_DEBUG);
}