function FieldPluginBase::init

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/field/FieldPluginBase.php \Drupal\views\Plugin\views\field\FieldPluginBase::init()
  2. 8.9.x core/modules/views/src/Plugin/views/field/FieldPluginBase.php \Drupal\views\Plugin\views\field\FieldPluginBase::init()
  3. 10 core/modules/views/src/Plugin/views/field/FieldPluginBase.php \Drupal\views\Plugin\views\field\FieldPluginBase::init()

Overrides HandlerBase::init

13 calls to FieldPluginBase::init()
Boolean::init in core/modules/views/src/Plugin/views/field/Boolean.php
Initialize the plugin.
BulkForm::init in core/modules/views/src/Plugin/views/field/BulkForm.php
Initialize the plugin.
DblogMessage::init in core/modules/dblog/src/Plugin/views/field/DblogMessage.php
Initialize the plugin.
EntityField::init in core/modules/views/src/Plugin/views/field/EntityField.php
Initialize the plugin.
EntityLabel::init in core/modules/views/src/Plugin/views/field/EntityLabel.php
Initialize the plugin.

... See full list

13 methods override FieldPluginBase::init()
Boolean::init in core/modules/views/src/Plugin/views/field/Boolean.php
Initialize the plugin.
BulkForm::init in core/modules/views/src/Plugin/views/field/BulkForm.php
Initialize the plugin.
DblogMessage::init in core/modules/dblog/src/Plugin/views/field/DblogMessage.php
Initialize the plugin.
EntityField::init in core/modules/views/src/Plugin/views/field/EntityField.php
Initialize the plugin.
EntityLabel::init in core/modules/views/src/Plugin/views/field/EntityLabel.php
Initialize the plugin.

... See full list

File

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

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.