ListField.php
Same filename in this branch
Same filename in other branches
- 9 core/modules/options/src/Plugin/views/filter/ListField.php
- 9 core/modules/options/src/Plugin/migrate/field/d7/ListField.php
- 10 core/modules/options/src/Plugin/views/filter/ListField.php
- 10 core/modules/options/src/Plugin/migrate/field/d7/ListField.php
- 11.x core/modules/options/src/Plugin/views/filter/ListField.php
- 11.x core/modules/options/src/Plugin/migrate/field/d7/ListField.php
Namespace
Drupal\options\Plugin\views\filterFile
-
core/
modules/ options/ src/ Plugin/ views/ filter/ ListField.php
View source
<?php
namespace Drupal\options\Plugin\views\filter;
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
*
* @ViewsFilter("list_field")
*/
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.