function kml_help in KML 5
Same name and namespace in other branches
- 8 kml.module \kml_help()
- 6 kml.module \kml_help()
Implementation of hook_help().
File
- ./
kml.module, line 14 - KML Module
Code
function kml_help($section = 'admin/help#kml') {
$output = '';
switch ($section) {
case 'admin/help#kml':
$output = t('<p>The KML module allows you to create KML feeds from Drupal for use in Google Earth. It requires the use of the location module to assign geographic locations to nodes.</p>');
$output .= t('<p>You can</p>
<ul>
<li>administer KML feed options at !admin_link.</li>
</ul>', array(
'!admin_link' => l('admin » settings » kml', 'admin/settings/kml', NULL, NULL, NULL, FALSE, TRUE),
));
return $output;
case 'admin/modules#description':
return t('Module to feed KML from Drupal to Google Earth');
}
}