function support_ticket_help in Support Ticketing System 8
Implements hook_help().
File
- modules/
support_ticket/ support_ticket.module, line 53 - Enables use of support tickets with optional time tracking.
Code
function support_ticket_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.support_ticket':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('The Support Ticket module provides a support ticket types with optional time tracking.') . '</p>';
// @todo write useful documentation.
return $output;
}
}