You are here

public static function MatchEngineBase::create in CRM Core 8.2

Same name and namespace in other branches
  1. 8.3 modules/crm_core_match/src/Plugin/crm_core_match/engine/MatchEngineBase.php \Drupal\crm_core_match\Plugin\crm_core_match\engine\MatchEngineBase::create()
  2. 8 modules/crm_core_match/src/Plugin/crm_core_match/engine/MatchEngineBase.php \Drupal\crm_core_match\Plugin\crm_core_match\engine\MatchEngineBase::create()

Creates an instance of the plugin.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The container to pull out services used in the plugin.

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.

Return value

static Returns an instance of this plugin.

Overrides ContainerFactoryPluginInterface::create

1 method overrides MatchEngineBase::create()
DefaultMatchingEngine::create in modules/crm_core_match/src/Plugin/crm_core_match/engine/DefaultMatchingEngine.php
Creates an instance of the plugin.

File

modules/crm_core_match/src/Plugin/crm_core_match/engine/MatchEngineBase.php, line 56
Contains \Drupal\crm_core_match\Plugin\crm_core_match\engine\MatchEngineBase.

Class

MatchEngineBase
Default implementation of MatchEngineInterface.

Namespace

Drupal\crm_core_match\Plugin\crm_core_match\engine

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  return new static($configuration, $plugin_id, $plugin_definition);
}