function download_file_permission in DownloadFile 7
Same name and namespace in other branches
- 7.3 download_file.module \download_file_permission()
- 7.2 download_file.module \download_file_permission()
Implementation of hook_perm().
File
- ./
download_file.module, line 32 - Module to direct download files or images.
Code
function download_file_permission() {
return array(
'access direct download file' => array(
'title' => t('Access direct download file'),
),
'administer download file' => array(
'title' => t('Administer download file'),
),
);
}