You are here

function system_service_perm in Services 6

Same name and namespace in other branches
  1. 5 services/system_service/system_service.module \system_service_perm()
  2. 6.2 services/system_service/system_service.module \system_service_perm()
  3. 7 services/system_service/system_service.module \system_service_perm()

Implementation of hook_perm().

File

services/system_service/system_service.module, line 23
@author Services Dev Team

Code

function system_service_perm() {
  return array(
    'send mail from remote',
    'get variable from remote',
    'set variable from remote',
    'check module exists from remote',
  );
}