You are here

public function AuthorDatumBase::__construct in Author Pane 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

File

src/Plugin/AuthorPane/AuthorDatumBase.php, line 56
Contains \Drupal\author_pane\Plugin\AuthorPane\AuthorDatumBase.

Class

AuthorDatumBase

Namespace

Drupal\author_pane\Plugin\AuthorPane

Code

public function __construct(array $configuration, $plugin_id, array $plugin_definition) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);

  // Set the properties from the annotation.
  $this->id = $plugin_definition['id'];
  $this->label = $plugin_definition['label'];
  $this->description = $plugin_definition['description'];
}