You are here

function download_count_help in Download Count 7.3

Same name and namespace in other branches
  1. 8 download_count.module \download_count_help()
  2. 5 download_count.module \download_count_help()
  3. 6.2 download_count.module \download_count_help()
  4. 6 download_count.module \download_count_help()
  5. 7.2 download_count.module \download_count_help()

Implements hook_help().

File

./download_count.module, line 14
Tracks file downloads for files stored in the drupal files table using the private files setting or custom private filefield.

Code

function download_count_help($path, $arg) {
  switch ($path) {
    case 'admin/help#download_count':
      return '<p>' . t('Counts file downloads for private core file fields and logs a message to the watchdog table.') . '</p>';
  }
}