You are here

function services_client_connection_permission in Services Client 7

Same name and namespace in other branches
  1. 7.2 services_client_connection/services_client_connection.module \services_client_connection_permission()

Implementation of hook_permissions().

File

services_client_connection/services_client_connection.module, line 14
Services Client Connection allows to configure different connections via UI and store them as exportable configuration. API client should be able to communicate with different versions of remote Services module via unified API client.

Code

function services_client_connection_permission() {
  return array(
    'administer services client connection' => array(
      'title' => t('Administer services connections'),
      'description' => t('Configure connections to remote Drupal sites.'),
    ),
  );
}