You are here

function services_services_authentication_info in Services 7.3

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

Implementation of hook_services_authentication_info().

File

./services.module, line 559
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',
  );
}