function views_plugin_style_table::even_empty in Views (for Drupal 7) 6.3
Same name and namespace in other branches
- 7.3 plugins/views_plugin_style_table.inc \views_plugin_style_table::even_empty()
Should the output of the style plugin be rendered even if it's a empty view.
Overrides views_plugin_style::even_empty
File
- plugins/
views_plugin_style_table.inc, line 298 - Contains the table style plugin.
Class
- views_plugin_style_table
- Style plugin to render each item as a row in a table.
Code
function even_empty() {
return parent::even_empty() || !empty($this->options['empty_table']);
}