function StylePluginBase::even_empty in Views (for Drupal 7) 8.3
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 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 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
- 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\styleCode
function even_empty() {
return !empty($this->definition['even empty']);
}