You are here

function hook_services_authentication_info_alter in Services 7.3

Allows alteration of authentication methods.

The paramaters passed to this function are a bit difficult to understand. Example params: $info = services_services_authentication_info(); $module = 'services';

Parameters

array $info: The array describing the authentication method provided by $module.

string $module: The module providing the authentication method.

See also

services_authentication_info()

1 invocation of hook_services_authentication_info_alter()
services_auth_invoke in includes/services.runtime.inc
Invokes a authentication module callback.

File

docs/services.alter.api.php, line 89
Documentation about Services alter hooks and variables.

Code

function hook_services_authentication_info_alter(&$info, $module) {
}