You are here

function getlocations_fields_plugin_style_streetview::even_empty in Get Locations 7

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

Should the output of the style plugin be rendered even if it's empty.

Overrides views_plugin_style::even_empty

File

modules/getlocations_fields/views/getlocations_fields_plugin_style_streetview.inc, line 144
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 even_empty() {
  return parent::even_empty() || !empty($this->options['empty_result']);
}