You are here

protected function ContextualLinks::defineOptions in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/contextual/src/Plugin/views/field/ContextualLinks.php \Drupal\contextual\Plugin\views\field\ContextualLinks::defineOptions()
  2. 9 core/modules/contextual/src/Plugin/views/field/ContextualLinks.php \Drupal\contextual\Plugin\views\field\ContextualLinks::defineOptions()

File

core/modules/contextual/src/Plugin/views/field/ContextualLinks.php, line 35

Class

ContextualLinks
Provides a handler that adds contextual links.

Namespace

Drupal\contextual\Plugin\views\field

Code

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