function address_map_link_help in Address Map (& Directions) Link 8
Implements hook_help().
File
- ./
address_map_link.module, line 18 - Contains address_map_link.module.
Code
function address_map_link_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the address_map_link module.
case 'help.page.address_map_link':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Provides a link to an external mapping site for an address field.') . '</p>';
return $output;
default:
}
}