Same name and namespace in other branches
  1. 6.x developer/hooks/core.php \hook_openid()

Allow modules to modify the OpenID request parameters.

Parameters

$op: The operation to be performed. Possible values:

  • request: Modify parameters before they are sent to the OpenID provider.

$request: An associative array of parameter defaults to which to modify or append.

Return value

An associative array of parameters to be merged with the default list.

Related topics

1 invocation of hook_openid()
openid_authentication_request in modules/openid/openid.module

File

modules/openid/openid.api.php, line 26
Hooks provided by the OpenID module.

Code

function hook_openid($op, $request) {
  if ($op == 'request') {
    $request['openid.identity'] = 'http://myname.myopenid.com/';
  }
  return $request;
}