function search_files_perm in Search Files 5
Same name and namespace in other branches
- 6.2 search_files.module \search_files_perm()
Implementation of hook_perm()
Return value
(array) permissions
File
- ./
search_files.module, line 500 - Used to index all files in directory(s) on the server
Code
function search_files_perm() {
return array(
'administer search_files configuration',
'view search_files results',
);
}