You are here

function services_services_authentication_info in Services 6.3

Same name and namespace in other branches
  1. 7.3 services.module \services_services_authentication_info()

Implementation of hook_services_authentication().

File

./services.module, line 324
Provides a generic but powerful API for web services.

Code

function services_services_authentication_info() {
  return array(
    'title' => t('Session authentication'),
    'description' => t("Uses Drupal's built in sessions to authenticate."),
    'authenticate_call' => '_services_sessions_authenticate_call',
  );
}