public function Tid::init in Views (for Drupal 7) 8.3
Initialize this plugin with the view and the argument it is linked to.
Overrides ArgumentDefaultPluginBase::init
File
- lib/
Views/ taxonomy/ Plugin/ views/ argument_default/ Tid.php, line 26 - Definition of Views\taxonomy\Plugin\views\argument_default\Tid.
Class
- Tid
- Taxonomy tid default argument.
Namespace
Views\taxonomy\Plugin\views\argument_defaultCode
public function init(ViewExecutable $view, &$argument, $options) {
parent::init($view, $argument, $options);
// 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;
}
}
}
}