function TermName::buildOptionsForm
Overrides EntityField::buildOptionsForm
File
- 
              core/modules/ taxonomy/ src/ Plugin/ views/ field/ TermName.php, line 47 
Class
- TermName
- Displays taxonomy term names and allows converting spaces to hyphens.
Namespace
Drupal\taxonomy\Plugin\views\fieldCode
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
  $form['convert_spaces'] = [
    '#title' => $this->t('Convert spaces in term names to hyphens'),
    '#type' => 'checkbox',
    '#default_value' => !empty($this->options['convert_spaces']),
  ];
  parent::buildOptionsForm($form, $form_state);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
