You are here

function getlocations_fields_plugin_style_streetview::render in Get Locations 7.2

Same name and namespace in other branches
  1. 7 modules/getlocations_fields/views/getlocations_fields_plugin_style_streetview.inc \getlocations_fields_plugin_style_streetview::render()

Render the display in this style.

Overrides views_plugin_style::render

File

modules/getlocations_fields/views/getlocations_fields_plugin_style_streetview.inc, line 148
getlocations_fields_plugin_style_streetview.inc @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Class

getlocations_fields_plugin_style_streetview
Getlocations style plugin to render a row as a google streetview.

Code

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