You are here

function theme_kml_placemark_description in KML 5

Same name and namespace in other branches
  1. 6 kml.module \theme_kml_placemark_description()

Theme the contents of the placemark

1 theme call to theme_kml_placemark_description()
kml_format_placemark in ./kml.module
Format a single KML Placemark (based on format_rss_item()).

File

./kml.module, line 1013
KML Module

Code

function theme_kml_placemark_description($item, $link) {
  $output = check_markup($item->teaser);
  $output .= '<br/><a href="' . check_url($link) . '">' . t('View page') . '</a>';
  return $output;
}