You are here

function getlocations_plugin_style_map::even_empty in Get Locations 7

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

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

Overrides views_plugin_style::even_empty

File

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