You are here

oauth2_client.api.php in OAuth2 Client 8.2

Documents hooks provided by the OAuth2 Client module.

File

oauth2_client.api.php
View source
<?php

/**
 * @file
 * Documents hooks provided by the OAuth2 Client module.
 */

/**
 * Alter OAuth2 Client plugin values.
 *
 * @param array $oauth2_clients
 *   An array of OAuth2 Client plugins registered on the system.
 */
function hook_oauth2_client_info_alter(array &$oauth2_clients) {
  $oauth2_clients['client_id']['some_key'] = 'some_value';
}

Functions

Namesort descending Description
hook_oauth2_client_info_alter Alter OAuth2 Client plugin values.