You are here

public function FieldPluginBase::init in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/field/FieldPluginBase.php \Drupal\views\Plugin\views\field\FieldPluginBase::init()

Initialize the plugin.

Parameters

\Drupal\views\ViewExecutable $view: The view object.

\Drupal\views\Plugin\views\display\DisplayPluginBase $display: The display handler.

array $options: The options configured for this plugin.

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 117

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'] = '';
  }
}