You are here

function kml_help in KML 6

Same name and namespace in other branches
  1. 8 kml.module \kml_help()
  2. 5 kml.module \kml_help()

Implementation of hook_help().

File

./kml.module, line 14
KML Module

Code

function kml_help($path, $arg) {
  $output = '';
  switch ($path) {
    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 &raquo; settings &raquo; kml', 'admin/settings/kml', array(
          'html' => TRUE,
        )),
      ));
      return $output;
    case 'admin/modules#description':
      return t('Module to feed KML from Drupal to Google Earth');
  }
}