You are here

function download_count_statistics_help in Download Count 6.2

Implementation of hook_help().

File

./download_count_statistics.module, line 20
Provides statistics for download_count module data.

Code

function download_count_statistics_help($path, $arg) {
  switch ($path) {
    case 'admin/help#download_count_statistics':
      return '<p>' . t("Provides daily, weekly, monthly, and yearly statistics for <a href=@link>download_count module</a> data. Statistics are cached and updated via cron.", array(
        '@link' => url('http://drupal.org/project/download_count'),
      )) . '</p>';
  }
}