You are here

public function FormatterTypeBase::__construct in Custom Formatters 8.3

Constructs a \Drupal\Component\Plugin\PluginBase object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

Overrides PluginBase::__construct

1 call to FormatterTypeBase::__construct()
FormatterPreset::__construct in src/Plugin/CustomFormatters/FormatterType/FormatterPreset.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
1 method overrides FormatterTypeBase::__construct()
FormatterPreset::__construct in src/Plugin/CustomFormatters/FormatterType/FormatterPreset.php
Constructs a \Drupal\Component\Plugin\PluginBase object.

File

src/FormatterTypeBase.php, line 25

Class

FormatterTypeBase
Class FormatterTypeBase.

Namespace

Drupal\custom_formatters

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition) {
  $this->entity = $configuration['entity'];
  parent::__construct($configuration, $plugin_id, $plugin_definition);
}