You are here

function getlocations_leaflet_plugin_style::render in Get Locations 7

Same name and namespace in other branches
  1. 7.2 modules/getlocations_leaflet/views/getlocations_leaflet_plugin_style.inc \getlocations_leaflet_plugin_style::render()

Render the display in this style.

Overrides views_plugin_style::render

File

modules/getlocations_leaflet/views/getlocations_leaflet_plugin_style.inc, line 495
getlocations_leaflet_plugin_style.inc @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Class

getlocations_leaflet_plugin_style
@file getlocations_leaflet_plugin_style.inc @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

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