You are here

function download_count_help in Open Social 8.6

Same name and namespace in other branches
  1. 8.9 modules/custom/download_count/download_count.module \download_count_help()
  2. 8 modules/custom/download_count/download_count.module \download_count_help()
  3. 8.2 modules/custom/download_count/download_count.module \download_count_help()
  4. 8.3 modules/custom/download_count/download_count.module \download_count_help()
  5. 8.4 modules/custom/download_count/download_count.module \download_count_help()
  6. 8.5 modules/custom/download_count/download_count.module \download_count_help()
  7. 8.7 modules/custom/download_count/download_count.module \download_count_help()
  8. 8.8 modules/custom/download_count/download_count.module \download_count_help()
  9. 10.3.x modules/custom/download_count/download_count.module \download_count_help()
  10. 10.0.x modules/custom/download_count/download_count.module \download_count_help()
  11. 10.1.x modules/custom/download_count/download_count.module \download_count_help()
  12. 10.2.x modules/custom/download_count/download_count.module \download_count_help()

Implements hook_help().

File

modules/custom/download_count/download_count.module, line 19
Tracks file downloads for files stored in the drupal files table.

Code

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