You are here

function download_file_permission in DownloadFile 7

Same name and namespace in other branches
  1. 7.3 download_file.module \download_file_permission()
  2. 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'),
    ),
  );
}