openid_normalize

7 openid.inc openid_normalize($identifier)
8 openid.inc openid_normalize($identifier)

Normalize the given identifier.

The procedure is described in OpenID Authentication 2.0, section 7.2.

7 calls to openid_normalize()

File

modules/openid/openid.inc, line 254
OpenID utility functions.

Code

function openid_normalize($identifier) {
  $methods = module_invoke_all('openid_normalization_method_info');
  drupal_alter('openid_normalization_method_info', $methods);

  // Execute each method in turn, stopping after the first method accepted
  // the identifier.
  foreach ($methods as $method) {
    $result = $method($identifier);
    if ($result !== NULL) {
      $identifier = $result;
      break;
    }
  }

  return $identifier;
}
Login or register to post comments