You are here

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

Same name and namespace in other branches
  1. 9.0.x src/Plugin/search_api/processor/FilesExtractor.php \Drupal\search_api_attachments\Plugin\search_api\processor\FilesExtractor::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 ProcessorPluginBase::create

File

src/Plugin/search_api/processor/FilesExtractor.php, line 141

Class

FilesExtractor
Provides file fields processor.

Namespace

Drupal\search_api_attachments\Plugin\search_api\processor

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  return new static($configuration, $plugin_id, $plugin_definition, $container
    ->get('plugin.manager.search_api_attachments.text_extractor'), $container
    ->get('config.factory'), $container
    ->get('entity_type.manager'), $container
    ->get('keyvalue'), $container
    ->get('module_handler'), $container
    ->get('search_api.fields_helper'), $container
    ->get('search_api_attachments.extract_file_validator'), $container
    ->get('logger.channel.search_api_attachments'));
}