You are here

public function ViewsBootstrapTablePluginStyle::option_definition in Views Bootstrap 7.2

Same name and namespace in other branches
  1. 7.3 plugins/table/views_bootstrap_table_plugin_style.inc \ViewsBootstrapTablePluginStyle::option_definition()

Definition.

Overrides views_plugin_style_table::option_definition

File

plugins/table/views_bootstrap_table_plugin_style.inc, line 14
Definition of views_bootstrap_plugin_style.

Class

ViewsBootstrapTablePluginStyle
Class to define a style plugin handler.

Code

public function option_definition() {
  $options = parent::option_definition();
  $options['bootstrap_styles'] = array(
    'default' => array(),
  );
  return $options;
}