You are here

public function MatcherBase::__construct in Linkit 8.4

Same name and namespace in other branches
  1. 8.5 src/MatcherBase.php \Drupal\linkit\MatcherBase::__construct()

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 MatcherBase::__construct()
EntityMatcher::__construct in src/Plugin/Linkit/Matcher/EntityMatcher.php
Constructs a \Drupal\Component\Plugin\PluginBase object.
1 method overrides MatcherBase::__construct()
EntityMatcher::__construct in src/Plugin/Linkit/Matcher/EntityMatcher.php
Constructs a \Drupal\Component\Plugin\PluginBase object.

File

src/MatcherBase.php, line 37
Contains \Drupal\linkit\MatcherBase.

Class

MatcherBase
Provides a base class for matchers.

Namespace

Drupal\linkit

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this
    ->setConfiguration($configuration);
}