You are here

function getlocations_plugin_style_map::render in Get Locations 7.2

Same name and namespace in other branches
  1. 6.2 getlocations_plugin_style_map.inc \getlocations_plugin_style_map::render()
  2. 6 getlocations_plugin_style_map.inc \getlocations_plugin_style_map::render()
  3. 7 views/getlocations_plugin_style_map.inc \getlocations_plugin_style_map::render()

Render the display in this style.

Overrides views_plugin_style::render

File

views/getlocations_plugin_style_map.inc, line 467
getlocations_plugin_style_map.inc @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Class

getlocations_plugin_style_map
Getlocations style plugin to render rows as icons on a map.

Code

function render() {
  if (isset($this->view->live_preview) && $this->view->live_preview) {
    return t('Getlocations Map views are not compatible with live preview.');
  }
  return parent::render();
}