You are here

protected function HtmlList::defineOptions in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 44
Contains \Drupal\views\Plugin\views\style\HtmlList.

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'] = array(
    'default' => 'ul',
  );
  $options['class'] = array(
    'default' => '',
  );
  $options['wrapper_class'] = array(
    'default' => 'item-list',
  );
  return $options;
}