You are here

function search_files_perm in Search Files 6.2

Same name and namespace in other branches
  1. 5 search_files.module \search_files_perm()

Implementation of hook_perm().

Return value

(array) permissions

File

./search_files.module, line 304
Used to index files in attachments and directories

Code

function search_files_perm() {
  return array(
    'administer search_files configuration',
    'view search_files results',
  );
}