function log_help in Log entity 8
Same name and namespace in other branches
- 2.x log.module \log_help()
Implements hook_help().
File
- ./
log.module, line 19 - Contains log.module..
Code
function log_help($route_name, RouteMatchInterface $route_match) {
$output = '';
// Main module help for the log module.
if ($route_name == 'help.page.log') {
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Provides Log entity') . '</p>';
}
return $output;
}