public function StylePluginBase::evenEmpty

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

1 call to StylePluginBase::evenEmpty()
Table::evenEmpty 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.
2 methods override StylePluginBase::evenEmpty()
EntityReference::evenEmpty in drupal/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/views/style/EntityReference.php
Should the output of the style plugin be rendered even if it's a empty view.
Table::evenEmpty 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 227
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

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