You are here

protected function ShsTaxonomyIndexTidDepth::defineOptions in Simple hierarchical select 8

Same name and namespace in other branches
  1. 2.0.x src/Plugin/views/filter/ShsTaxonomyIndexTidDepth.php \Drupal\shs\Plugin\views\filter\ShsTaxonomyIndexTidDepth::defineOptions()

Information about options for all kinds of purposes will be held here.


'option_name' => array(
 - 'default' => default value,
 - 'contains' => (optional) array of items this contains, with its own
     defaults, etc. If contains is set, the default will be ignored and
     assumed to be array().
 ),

Return value

array Returns the options of this handler/plugin.

Overrides TaxonomyIndexTid::defineOptions

File

src/Plugin/views/filter/ShsTaxonomyIndexTidDepth.php, line 75

Class

ShsTaxonomyIndexTidDepth
Filter handler for taxonomy terms with depth.

Namespace

Drupal\shs\Plugin\views\filter

Code

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