function gmap_plugin_style_gmapextended::render in GMap Module 7
Same name and namespace in other branches
- 7.2 gmap_plugin_style_gmapextended.inc \gmap_plugin_style_gmapextended::render()
Render the display in this style.
Overrides views_plugin_style::render
File
- ./
gmap_plugin_style_gmapextended.inc, line 394 - GMap style plugin.
Class
- gmap_plugin_style_gmapextended
- Style plugin to render a map.
Code
function render() {
if (isset($this->view->live_preview) && $this->view->live_preview) {
return t('GMap views are not compatible with live preview.');
}
return parent::render();
}