function ContextualLinks::defineOptions

Same name and namespace in other branches
  1. 8.9.x core/modules/contextual/src/Plugin/views/field/ContextualLinks.php \Drupal\contextual\Plugin\views\field\ContextualLinks::defineOptions()
  2. 10 core/modules/contextual/src/Plugin/views/field/ContextualLinks.php \Drupal\contextual\Plugin\views\field\ContextualLinks::defineOptions()
  3. 11.x core/modules/contextual/src/Plugin/views/field/ContextualLinks.php \Drupal\contextual\Plugin\views\field\ContextualLinks::defineOptions()

Overrides FieldPluginBase::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;
}

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