function StylePluginBase::even_empty

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

1 call to StylePluginBase::even_empty()
Table::even_empty in drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/Table.php
Should the output of the style plugin be rendered even if it's a empty view.
1 method overrides StylePluginBase::even_empty()
Table::even_empty in drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/Table.php
Should the output of the style plugin be rendered even if it's a empty view.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php, line 219
Definition of Drupal\views\Plugin\views\style\StylePluginBase.

Class

StylePluginBase
Base class to define a style plugin handler.

Namespace

Drupal\views\Plugin\views\style

Code

function even_empty() {
  return !empty($this->definition['even empty']);
}