function tracking_code_help in Tracking Code 8
Implements hook_help().
File
- ./
tracking_code.module, line 13 - Contains tracking_code.module..
Code
function tracking_code_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the tracking_code module.
case 'help.page.tracking_code':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Provides an interface for adding tracking code snippets into pages with controls for visibility.') . '</p>';
return $output;
default:
}
}