You are here

public static function TextExtractorPluginBase::create in Search API attachments 8

Same name and namespace in other branches
  1. 9.0.x src/TextExtractorPluginBase.php \Drupal\search_api_attachments\TextExtractorPluginBase::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

2 methods override TextExtractorPluginBase::create()
SolrExtractor::create in src/Plugin/search_api_attachments/SolrExtractor.php
Creates an instance of the plugin.
TikaServerExtractor::create in src/Plugin/search_api_attachments/TikaServerExtractor.php
Creates an instance of the plugin.

File

src/TextExtractorPluginBase.php, line 71

Class

TextExtractorPluginBase
Base class for plugins able to extract file content.

Namespace

Drupal\search_api_attachments

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  return new static($configuration, $plugin_id, $plugin_definition, $container
    ->get('config.factory'), $container
    ->get('stream_wrapper_manager'), $container
    ->get('file.mime_type.guesser'), $container
    ->get('messenger'));
}