You are here

public static function FallbackLanguage::create in Entity Language Fallback 8

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 ProcessorPluginBase::create

File

src/Plugin/search_api/processor/FallbackLanguage.php, line 91

Class

FallbackLanguage
Excludes unpublished nodes from node indexes.

Namespace

Drupal\entity_language_fallback\Plugin\search_api\processor

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  $processor = parent::create($container, $configuration, $plugin_id, $plugin_definition);
  $processor
    ->setLanguageList($container
    ->get('language_manager'));
  return $processor;
}