function download_count_help in Download Count 8
Same name and namespace in other branches
- 5 download_count.module \download_count_help()
- 6.2 download_count.module \download_count_help()
- 6 download_count.module \download_count_help()
- 7.3 download_count.module \download_count_help()
- 7.2 download_count.module \download_count_help()
Implements hook_help().
File
- ./
download_count.module, line 18 - 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 'admin/help#download_count':
return '<p>' . t('Counts file downloads for private core file fields and
logs a message to the watchdog table.') . '</p>';
}
}