function download_count_help in Download Count 6
Same name and namespace in other branches
- 8 download_count.module \download_count_help()
- 5 download_count.module \download_count_help()
- 6.2 download_count.module \download_count_help()
- 7.3 download_count.module \download_count_help()
- 7.2 download_count.module \download_count_help()
Implementation of hook_help()
File
- ./
download_count.module, line 8 - Download counter
Code
function download_count_help($path, $arg) {
switch ($path) {
case 'admin/help#download_count':
return '<p>' . t('Increments a download counter and logs a descriptive message each time an attached file is downloaded.') . '</p>';
}
}