You are here

function services_perm in Services 6.3

Same name and namespace in other branches
  1. 5 services.module \services_perm()
  2. 6 services.module \services_perm()
  3. 6.2 services.module \services_perm()

Implementation of hook_perm().

File

./services.module, line 35
Provides a generic but powerful API for web services.

Code

function services_perm() {
  return array(
    'administer services',
    'get taxonomy tree',
    // File resource permissions
    'get any binary files',
    'get own binary files',
    'save file information',
    // System resource permissions
    'get a system variable',
    'set a system variable',
    // Query permissions
    'perform unlimited index queries',
  );
}