function filelog_help in File Log 8
Same name and namespace in other branches
- 2.0.x filelog.module \filelog_help()
Implements hook_help().
File
- ./
filelog.module, line 16 - Contains filelog.module.
Code
function filelog_help($route_name) {
if ($route_name === 'help.page.filelog') {
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Logs system events to a file.') . '</p>';
return $output;
}
return NULL;
}