You are here

public static function FilesExtractor::create in Search API attachments 9.0.x

Same name and namespace in other branches
  1. 8 src/Plugin/search_api/processor/FilesExtractor.php \Drupal\search_api_attachments\Plugin\search_api\processor\FilesExtractor::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'));
}