You are here

class TermName in Drupal 10

Same name in this branch
  1. 10 core/modules/taxonomy/src/Plugin/views/argument_validator/TermName.php \Drupal\taxonomy\Plugin\views\argument_validator\TermName
  2. 10 core/modules/taxonomy/src/Plugin/views/field/TermName.php \Drupal\taxonomy\Plugin\views\field\TermName
Same name and namespace in other branches
  1. 8 core/modules/taxonomy/src/Plugin/views/field/TermName.php \Drupal\taxonomy\Plugin\views\field\TermName
  2. 9 core/modules/taxonomy/src/Plugin/views/field/TermName.php \Drupal\taxonomy\Plugin\views\field\TermName

Displays taxonomy term names and allows converting spaces to hyphens.

Plugin annotation

@ViewsField("term_name");

Hierarchy

  • class \Drupal\taxonomy\Plugin\views\field\TermName extends \Drupal\views\Plugin\views\field\EntityField

Expanded class hierarchy of TermName

File

core/modules/taxonomy/src/Plugin/views/field/TermName.php, line 16

Namespace

Drupal\taxonomy\Plugin\views\field
View source
class TermName extends EntityField {

  /**
   * {@inheritdoc}
   */
  public function getItems(ResultRow $values) {
    $items = parent::getItems($values);
    if ($this->options['convert_spaces']) {
      foreach ($items as &$item) {

        // Replace spaces with hyphens.
        $name = $item['raw']
          ->get('value')
          ->getValue();

        // @todo Add link support https://www.drupal.org/node/2567745
        $item['rendered']['#context']['value'] = str_replace(' ', '-', $name);
      }
    }
    return $items;
  }

  /**
   * {@inheritdoc}
   */
  protected function defineOptions() {
    $options = parent::defineOptions();
    $options['convert_spaces'] = [
      'default' => FALSE,
    ];
    return $options;
  }

  /**
   * {@inheritdoc}
   */
  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);
  }

}

Members