function yandex_services_auth_info in Yandex Services Authorization API 7
Same name and namespace in other branches
- 8 yandex_services_auth.module \yandex_services_auth_info()
- 6 yandex_services_auth.module \yandex_services_auth_info()
API function to return information for other modules.
Parameters
string $value:
- client_id
- client_secret
- token
File
- ./
yandex_services_auth.module, line 39 - Main file for the Yandex Services Authorization API module.
Code
function yandex_services_auth_info($value = 'token') {
switch ($value) {
case 'client_id':
return variable_get('yandex_services_auth_client_id', '');
case 'client_secret':
return variable_get('yandex_services_auth_client_secret', '');
case 'token':
default:
return variable_get('yandex_services_auth_token', '');
}
}