You are here

protected function HtmlList::defineOptions in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/style/HtmlList.php \Drupal\views\Plugin\views\style\HtmlList::defineOptions()

Set default options

Overrides StylePluginBase::defineOptions

File

core/modules/views/src/Plugin/views/style/HtmlList.php, line 37

Class

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

Namespace

Drupal\views\Plugin\views\style

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['type'] = [
    'default' => 'ul',
  ];
  $options['class'] = [
    'default' => '',
  ];
  $options['wrapper_class'] = [
    'default' => 'item-list',
  ];
  return $options;
}