You are here

public function PrerenderList::buildOptionsForm in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/views/src/Plugin/views/field/PrerenderList.php \Drupal\views\Plugin\views\field\PrerenderList::buildOptionsForm()

Default options form that provides the label widget that all fields should have.

Overrides FieldPluginBase::buildOptionsForm

1 call to PrerenderList::buildOptionsForm()
TaxonomyIndexTid::buildOptionsForm in core/modules/taxonomy/src/Plugin/views/field/TaxonomyIndexTid.php
Provide "link to term" option.
1 method overrides PrerenderList::buildOptionsForm()
TaxonomyIndexTid::buildOptionsForm in core/modules/taxonomy/src/Plugin/views/field/TaxonomyIndexTid.php
Provide "link to term" option.

File

core/modules/views/src/Plugin/views/field/PrerenderList.php, line 50
Contains \Drupal\views\Plugin\views\field\PrerenderList.

Class

PrerenderList
Field handler to provide a list of items.

Namespace

Drupal\views\Plugin\views\field

Code

public function buildOptionsForm(&$form, FormStateInterface $form_state) {
  $form['type'] = array(
    '#type' => 'radios',
    '#title' => $this
      ->t('Display type'),
    '#options' => array(
      'ul' => $this
        ->t('Unordered list'),
      'ol' => $this
        ->t('Ordered list'),
      'separator' => $this
        ->t('Simple separator'),
    ),
    '#default_value' => $this->options['type'],
  );
  $form['separator'] = array(
    '#type' => 'textfield',
    '#title' => $this
      ->t('Separator'),
    '#default_value' => $this->options['separator'],
    '#states' => array(
      'visible' => array(
        ':input[name="options[type]"]' => array(
          'value' => 'separator',
        ),
      ),
    ),
  );
  parent::buildOptionsForm($form, $form_state);
}