You are here

function download_count_help in Download Count 6.2

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 download_count.module \download_count_help()
  4. 7.3 download_count.module \download_count_help()
  5. 7.2 download_count.module \download_count_help()

Implementation of hook_help().

File

./download_count.module, line 11
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("Tracks file downloads for files stored in the drupal files table. Requires either the 'private' download method setting or the method for combined public and private files described at <a href=@link>http://drupal.org/node/189239</a>. Also logs a message to the watchdog table.", array(
        '@link' => url('http://drupal.org/node/189239'),
      )) . '</p>';
  }
}