function Term::init

Overrides PluginBase::init

File

core/modules/taxonomy/src/Plugin/views/argument_validator/Term.php, line 17

Class

Term
Adds legacy vocabulary handling to standard Entity Argument validation..

Namespace

Drupal\taxonomy\Plugin\views\argument_validator

Code

public function init(ViewExecutable $view, DisplayPluginBase $display, array &$options = NULL) {
    parent::init($view, $display, $options);
    // @todo Remove the legacy code.
    // Convert legacy vids option to machine name vocabularies.
    if (!empty($this->options['vids'])) {
        $vocabularies = taxonomy_vocabulary_get_names();
        foreach ($this->options['vids'] as $vid) {
            if (isset($vocabularies[$vid], $vocabularies[$vid]->machine_name)) {
                $this->options['vocabularies'][$vocabularies[$vid]->machine_name] = $vocabularies[$vid]->machine_name;
            }
        }
    }
}

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