You are here

function theme_image_gmapnodelabel in GMap Module 5

File

./gmap_location.module, line 838
GMap Location module is a module to add some gmap funcationality based on location.modules information.

Code

function theme_image_gmapnodelabel($n) {
  $out = '<a href="' . url('node/' . $n->nid) . '">' . check_plain($n->title) . '</a> <br>';
  $out .= image_display($n, 'thumbnail');
  return $out;
}