You are here

function UIkitViewsPluginStyleTable::even_empty in UIkit Components 7.2

Same name and namespace in other branches
  1. 7.3 uikit_views/plugins/UIkitViewsPluginStyleTable.inc \UIkitViewsPluginStyleTable::even_empty()

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

Overrides views_plugin_style::even_empty

File

uikit_views/plugins/UIkitViewsPluginStyleTable.inc, line 347
Contains the table style plugin.

Class

UIkitViewsPluginStyleTable
Style plugin to render each item as a row in a UIkit table.

Code

function even_empty() {
  return parent::even_empty() || !empty($this->options['empty_table']);
}