You are here

function clients_flickr_clients_connection_type_info in Web Service Clients 7

Implementation of hook_clients_connection_type_info().

Define the connection type we provide.

File

backends/clients_flickr/clients_flickr.module, line 28
Flickr plugin for Clients module

Code

function clients_flickr_clients_connection_type_info() {
  return array(
    // Key by machine name. Used as the base for hooks.
    'clients_flickr' => array(
      'label' => t('Flickr'),
    ),
  );
}