function theme_gmap_marker_popup in GMap Module 7.2
Same name and namespace in other branches
- 5 gmap.module \theme_gmap_marker_popup()
- 6.2 gmap.module \theme_gmap_marker_popup()
- 6 gmap.module \theme_gmap_marker_popup()
- 7 gmap.module \theme_gmap_marker_popup()
Theme a marker popup.
@todo move this to GmapView class. This will get called for markers embedded in macros.
2 theme calls to theme_gmap_marker_popup()
- GmapMacroToolbox::getParsedMacro in lib/
Drupal/ gmap/ GmapMacroToolbox.php - Getting a parsed macro.
- legacy__gmap_parse_macro in tests/
inc/ gmap_parse_macro.inc
File
- ./
gmap.module, line 295 - GMap -- Routines to use the Google Maps API in Drupal.
Code
function theme_gmap_marker_popup($vars) {
return $vars['label'];
}