You are here

protected function ViewsBootstrapListGroup::defineOptions in Views Bootstrap 8.3

Same name and namespace in other branches
  1. 8.4 src/Plugin/views/style/ViewsBootstrapListGroup.php \Drupal\views_bootstrap\Plugin\views\style\ViewsBootstrapListGroup::defineOptions()

Definition.

Overrides StylePluginBase::defineOptions

File

src/Plugin/views/style/ViewsBootstrapListGroup.php, line 41

Class

ViewsBootstrapListGroup
Style plugin to render each item in an ordered or unordered list.

Namespace

Drupal\views_bootstrap\Plugin\views\style

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['link_field'] = [
    'default' => [],
  ];
  $options['panels'] = [
    'default' => FALSE,
  ];
  return $options;
}