function views_plugin_style::even_empty in Views (for Drupal 7) 6.3
Same name and namespace in other branches
- 7.3 plugins/views_plugin_style.inc \views_plugin_style::even_empty()
Should the output of the style plugin be rendered even if it's a empty view.
1 call to views_plugin_style::even_empty()
- views_plugin_style_table::even_empty in plugins/
views_plugin_style_table.inc - Should the output of the style plugin be rendered even if it's a empty view.
1 method overrides views_plugin_style::even_empty()
- views_plugin_style_table::even_empty in plugins/
views_plugin_style_table.inc - Should the output of the style plugin be rendered even if it's a empty view.
File
- plugins/
views_plugin_style.inc, line 153
Class
- views_plugin_style
- Base class to define a style plugin handler.
Code
function even_empty() {
return !empty($this->definition['even empty']);
}