function Node::defineOptions

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

Overrides FieldPluginBase::defineOptions

1 call to Node::defineOptions()
HistoryUserTimestamp::defineOptions in core/modules/history/src/Plugin/views/field/HistoryUserTimestamp.php
Information about options for all kinds of purposes will be held here.
1 method overrides Node::defineOptions()
HistoryUserTimestamp::defineOptions in core/modules/history/src/Plugin/views/field/HistoryUserTimestamp.php
Information about options for all kinds of purposes will be held here.

File

core/modules/node/src/Plugin/views/field/Node.php, line 40

Class

Node
Field handler to provide simple renderer that allows linking to a node.

Namespace

Drupal\node\Plugin\views\field

Code

protected function defineOptions() {
    $options = parent::defineOptions();
    $options['link_to_node'] = [
        'default' => $this->definition['link_to_node default'] ?? FALSE,
    ];
    return $options;
}

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