You are here

function download_file_help in DownloadFile 7

Same name and namespace in other branches
  1. 6 download_file.module \download_file_help()
  2. 7.3 download_file.module \download_file_help()
  3. 7.2 download_file.module \download_file_help()

Implementation of hook_help().

File

./download_file.module, line 16
Module to direct download files or images.

Code

function download_file_help($path, $arg) {
  switch ($path) {
    case 'admin/help#download_file':
      $output = '';
      $output .= '<p>' . t('The download file module to direct download files or images.') . '</p>';
      $output .= '<p>' . t('The download file module <a href="@setting">setting page</a> allows you to modify the format of the link accessible.', array(
        '@setting' => url('admin/settings/download-file'),
      )) . '</p>';
      return $output;
    case 'admin/settings/download-file':
      return '<p>' . t('The fownload file module to direct download files or images. Use the setting below to customize the format of the link accessible.') . '</p>';
  }
}