You are here

function clients_perm in Web Service Clients 6.2

Same name and namespace in other branches
  1. 6 clients.module \clients_perm()
  2. 7 clients.module \clients_perm()

Implementation of hook_perm().

Return value

An array of valid permissions for the clients module.

File

./clients.module, line 86
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_perm() {
  return array(
    'administer clients connections',
  );
}