function TaxonomyIndexTid::buildOptionsForm
Provide "link to term" option.
Overrides PrerenderList::buildOptionsForm
File
- 
              core/
modules/ taxonomy/ src/ Plugin/ views/ field/ TaxonomyIndexTid.php, line 85  
Class
- TaxonomyIndexTid
 - Field handler to display all taxonomy terms of a node.
 
Namespace
Drupal\taxonomy\Plugin\views\fieldCode
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
  $form['link_to_taxonomy'] = [
    '#title' => $this->t('Link this field to its term page'),
    '#type' => 'checkbox',
    '#default_value' => !empty($this->options['link_to_taxonomy']),
  ];
  $form['limit'] = [
    '#type' => 'checkbox',
    '#title' => $this->t('Limit terms by vocabulary'),
    '#default_value' => $this->options['limit'],
  ];
  $options = [];
  $vocabularies = $this->vocabularyStorage
    ->loadMultiple();
  foreach ($vocabularies as $voc) {
    $options[$voc->id()] = $voc->label();
  }
  $form['vids'] = [
    '#type' => 'checkboxes',
    '#title' => $this->t('Vocabularies'),
    '#options' => $options,
    '#default_value' => $this->options['vids'],
    '#states' => [
      'visible' => [
        ':input[name="options[limit]"]' => [
          'checked' => TRUE,
        ],
      ],
    ],
  ];
  parent::buildOptionsForm($form, $form_state);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.