function FieldPluginBase::init

Same name and namespace in other branches
  1. 11.x core/modules/views/src/Plugin/views/field/FieldPluginBase.php \Drupal\views\Plugin\views\field\FieldPluginBase::init()
2 methods override FieldPluginBase::init()
DblogMessage::init in core/modules/dblog/src/Plugin/views/field/DblogMessage.php
Initialize the plugin.
File::init in core/modules/file/src/Plugin/views/field/File.php
Initialize the plugin.

File

core/modules/views/src/Plugin/views/field/FieldPluginBase.php, line 120

Class

FieldPluginBase
Base class for views fields.

Namespace

Drupal\views\Plugin\views\field

Code

public function init(ViewExecutable $view, DisplayPluginBase $display, array &$options = NULL) {
  parent::init($view, $display, $options);
  $this->additional_fields = [];
  if (!empty($this->definition['additional fields'])) {
    $this->additional_fields = $this->definition['additional fields'];
  }
  if (!isset($this->options['exclude'])) {
    $this->options['exclude'] = '';
  }
}

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