function event_help in Event 8
Same name and namespace in other branches
- 5.2 event.module \event_help()
- 5 event.module \event_help()
Implements hook_help().
File
- ./
event.module, line 16 - Contains event.module.
Code
function event_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the event module.
case 'help.page.event':
$output = '';
$output .= '<h3>' . t('About Event') . '</h3>';
$output .= '<p>' . t('Events are entities used to manage events.') . '</p>';
return $output;
default:
}
}