function TaxonomyIndexTidDepth::defineOptions

Same name and namespace in other branches
  1. 9 core/modules/taxonomy/src/Plugin/views/filter/TaxonomyIndexTidDepth.php \Drupal\taxonomy\Plugin\views\filter\TaxonomyIndexTidDepth::defineOptions()
  2. 8.9.x core/modules/taxonomy/src/Plugin/views/filter/TaxonomyIndexTidDepth.php \Drupal\taxonomy\Plugin\views\filter\TaxonomyIndexTidDepth::defineOptions()
  3. 10 core/modules/taxonomy/src/Plugin/views/filter/TaxonomyIndexTidDepth.php \Drupal\taxonomy\Plugin\views\filter\TaxonomyIndexTidDepth::defineOptions()

Overrides TaxonomyIndexTid::defineOptions

File

core/modules/taxonomy/src/Plugin/views/filter/TaxonomyIndexTidDepth.php, line 27

Class

TaxonomyIndexTidDepth
Filter handler for taxonomy terms with depth.

Namespace

Drupal\taxonomy\Plugin\views\filter

Code

protected function defineOptions() {
    $options = parent::defineOptions();
    $options['depth'] = [
        'default' => 0,
    ];
    return $options;
}

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