public function UIkitViewTable::evenEmpty in UIkit Components 8
Same name and namespace in other branches
- 8.3 uikit_views/src/Plugin/views/style/UIkitViewTable.php \Drupal\uikit_views\Plugin\views\style\UIkitViewTable::evenEmpty()
- 8.2 uikit_views/src/Plugin/views/style/UIkitViewTable.php \Drupal\uikit_views\Plugin\views\style\UIkitViewTable::evenEmpty()
Should the output of the style plugin be rendered even if it's a empty view.
Overrides StylePluginBase::evenEmpty
File
- uikit_views/
src/ Plugin/ views/ style/ UIkitViewTable.php, line 454
Class
- UIkitViewTable
- Style plugin to render each item in a UIkit Table component.
Namespace
Drupal\uikit_views\Plugin\views\styleCode
public function evenEmpty() {
return parent::evenEmpty() || !empty($this->options['empty_table']);
}