You are here

function clients_drupal_clients_connection_type_info in Web Service Clients 7

Same name and namespace in other branches
  1. 6.2 connections/clients_drupal/clients_drupal.module \clients_drupal_clients_connection_type_info()
  2. 7.3 connections/clients_drupal/clients_drupal.module \clients_drupal_clients_connection_type_info()
  3. 7.2 connections/clients_drupal/clients_drupal.module \clients_drupal_clients_connection_type_info()

Implementation of hook_clients_connection_type_info().

Define the connection type we provide.

File

backends/clients_drupal/clients_drupal.module, line 28
Drupal Services plugin for Clients module

Code

function clients_drupal_clients_connection_type_info() {
  return array(
    // Key by machine name. Used as the base for hooks.
    'drupal_services' => array(
      'label' => t('Drupal Services'),
    ),
    'drupal_services_5' => array(
      'label' => t('Drupal Services 5'),
    ),
    'drupal_services_6_2' => array(
      'label' => t('Drupal Services 6.x-2.x'),
    ),
  );
}