function services_ipauth_services_authentication_info in Services IP Authentication 7
Same name and namespace in other branches
- 6 services_ipauth.module \services_ipauth_services_authentication_info()
Implementation of hook_services_authentication().
File
- ./
services_ipauth.module, line 19 - Hook implementations and general API function for the IP Authentication module.
Code
function services_ipauth_services_authentication_info() {
return array(
'file' => 'services_ipauth.inc',
'title' => t('IP authentication'),
'description' => t('Secure IP authorization.'),
'security_settings' => '_services_ipauth_security_settings',
'authenticate_call' => '_services_ipauth_authenticate_call',
);
}