You are here

function clients_permission in Web Service Clients 7.2

Same name and namespace in other branches
  1. 7.3 clients.module \clients_permission()

Implements hook_permission()

Return value

An array of valid permissions for the clients module.

File

./clients.module, line 85
Clients module provides a UI, storage, and an API for handling connections to remote webservices, including those provided by Services module on other Drupal sites.

Code

function clients_permission() {
  return array(
    'administer clients connections' => array(
      'title' => t('Administer client connections'),
    ),
  );
}