You are here

function clients_permission in Web Service Clients 7.3

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

Implements hook_permission()

File

./clients.module, line 397
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'),
    ),
    'administer clients resources' => array(
      'title' => t('Administer client resources'),
    ),
  );
}