kml-placemark.tpl.php in KML 7
Same filename and directory in other branches
1 theme call to kml-placemark.tpl.php
- template_preprocess_views_view_kml in views/
kml_views.theme.inc - @file Theming functions for KML module views output.
File
views/kml-placemark.tpl.phpView source
<Placemark>
<name>
<![CDATA[<?php
print $name;
?>]]>
</name>
<description>
<![CDATA[<?php
print $description;
?>]]>
</description>
<?php
if ($styleUrl) {
?>
<styleUrl><?php
echo $styleUrl;
?></styleUrl>
<?php
}
?>
<Point>
<coordinates><?php
print $coords;
?></coordinates>
</Point>
</Placemark>