protected function TermName::defineOptions in Drupal 8
Same name in this branch
- 8 core/modules/taxonomy/src/Plugin/views/argument_validator/TermName.php \Drupal\taxonomy\Plugin\views\argument_validator\TermName::defineOptions()
 - 8 core/modules/taxonomy/src/Plugin/views/field/TermName.php \Drupal\taxonomy\Plugin\views\field\TermName::defineOptions()
 
Same name and namespace in other branches
- 9 core/modules/taxonomy/src/Plugin/views/argument_validator/TermName.php \Drupal\taxonomy\Plugin\views\argument_validator\TermName::defineOptions()
 
Retrieves the options when this is a new access control plugin.
Overrides Entity::defineOptions
File
- core/
modules/ taxonomy/ src/ Plugin/ views/ argument_validator/ TermName.php, line 41  
Class
- TermName
 - Validates whether a term name is a valid term argument.
 
Namespace
Drupal\taxonomy\Plugin\views\argument_validatorCode
protected function defineOptions() {
  $options = parent::defineOptions();
  $options['transform'] = [
    'default' => FALSE,
  ];
  return $options;
}