function kml_help in KML 8
Same name and namespace in other branches
- 5 kml.module \kml_help()
- 6 kml.module \kml_help()
Implements hook_help().
File
- ./
kml.module, line 13 - Adds support for serializing entities to KML.
Code
function kml_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.kml':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('This module allows for export of location-specific data as placemarks in KML and KMZ formats.') . '</p>';
return $output;
}
}