function 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

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.