You are here

public function ViewsBootstrapTabPluginStyle::option_definition in Views Bootstrap 7.2

Same name and namespace in other branches
  1. 7.3 plugins/tab/views_bootstrap_tab_plugin_style.inc \ViewsBootstrapTabPluginStyle::option_definition()

Definition.

Overrides views_plugin_style::option_definition

File

plugins/tab/views_bootstrap_tab_plugin_style.inc, line 14
Definition of views_bootstrap_plugin_style.

Class

ViewsBootstrapTabPluginStyle
Class to define a style plugin handler.

Code

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