You are here

public function MetaNameBase::__construct in Metatag 8

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/metatag/Tag/MetaNameBase.php, line 115

Class

MetaNameBase
Each meta tag will extend this base.

Namespace

Drupal\metatag\Plugin\metatag\Tag

Code

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

  // Set the properties from the annotation.
  // @todo Should we have setProperty() methods for each of these?
  $this->id = $plugin_definition['id'];
  $this->name = $plugin_definition['name'];
  $this->label = $plugin_definition['label'];
  $this->description = $plugin_definition['description'];
  $this->group = $plugin_definition['group'];
  $this->weight = $plugin_definition['weight'];
  $this->type = $plugin_definition['type'];
  $this->secure = $plugin_definition['secure'];
  $this->multiple = $plugin_definition['multiple'];
  $this->long = !empty($plugin_definition['long']);
  $this->absoluteUrl = !empty($plugin_definition['absolute_url']);
  $this->request = \Drupal::request();
}