You are here

function file_service_perm in Services 6.2

Same name and namespace in other branches
  1. 6 services/file_service/file_service.module \file_service_perm()
  2. 7 services/file_service/file_service.module \file_service_perm()

Implementation of hook_perm().

File

services/file_service/file_service.module, line 10
Link general file functionalities to services module.

Code

function file_service_perm() {
  return array(
    'get any binary files',
    'get own binary files',
    'save file information',
  );
}