theme_nicemap_content

nicemap/nicemap.theme.inc, line 59

Versions
6
theme_nicemap_content($point)

Code

<?php
function theme_nicemap_content($point) {
  $content = $point['content'];
  $close = "<span class='close'>". t('Close') ."</span>";
  return "<div class='geoitem' id='geoitem-". $point['i'] ."'>$close $content</div>";
}
?>