public function MatcherBase::__construct in Linkit 8.5
Same name and namespace in other branches
- 8.4 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 33
Class
- MatcherBase
- Provides a base class for matchers.
Namespace
Drupal\linkitCode
public function __construct(array $configuration, $plugin_id, $plugin_definition) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this
->setConfiguration($configuration);
}