ListField.php

Same filename in this branch
  1. 11.x core/modules/options/src/Plugin/migrate/field/d7/ListField.php
Same filename and directory in other branches
  1. 9 core/modules/options/src/Plugin/views/filter/ListField.php
  2. 9 core/modules/options/src/Plugin/migrate/field/d7/ListField.php
  3. 8.9.x core/modules/options/src/Plugin/views/filter/ListField.php
  4. 8.9.x core/modules/options/src/Plugin/migrate/field/d7/ListField.php
  5. 10 core/modules/options/src/Plugin/views/filter/ListField.php
  6. 10 core/modules/options/src/Plugin/migrate/field/d7/ListField.php

Namespace

Drupal\options\Plugin\views\filter

File

core/modules/options/src/Plugin/views/filter/ListField.php

View source
<?php

namespace Drupal\options\Plugin\views\filter;

use Drupal\views\Attribute\ViewsFilter;
use Drupal\views\FieldAPIHandlerTrait;
use Drupal\views\Plugin\views\display\DisplayPluginBase;
use Drupal\views\Plugin\views\filter\ManyToOne;
use Drupal\views\ViewExecutable;

/**
 * Filter handler which uses list-fields as options.
 *
 * @ingroup views_filter_handlers
 */
class ListField extends ManyToOne {
    use FieldAPIHandlerTrait;
    
    /**
     * {@inheritdoc}
     */
    public function init(ViewExecutable $view, DisplayPluginBase $display, ?array &$options = NULL) {
        parent::init($view, $display, $options);
        $field_storage = $this->getFieldStorageDefinition();
        // Set valueOptions here so getValueOptions() will just return it.
        $this->valueOptions = options_allowed_values($field_storage);
    }

}

Classes

Title Deprecated Summary
ListField Filter handler which uses list-fields as options.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.