public function ProcessorPluginManager::__construct in Search API 8
Constructs a ProcessorPluginManager object.
Parameters
\Traversable $namespaces: An object that implements \Traversable which contains the root paths keyed by the corresponding namespace to look for plugin implementations.
\Drupal\Core\Cache\CacheBackendInterface $cache_backend: Cache backend instance to use.
\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler.
\Symfony\Component\EventDispatcher\EventDispatcherInterface $eventDispatcher: The event dispatcher.
\Drupal\Core\StringTranslation\TranslationInterface $translation: The string translation manager.
Overrides SearchApiPluginManager::__construct
File
- src/
Processor/ ProcessorPluginManager.php, line 40
Class
- ProcessorPluginManager
- Manages processor plugins.
Namespace
Drupal\search_api\ProcessorCode
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler, EventDispatcherInterface $eventDispatcher, TranslationInterface $translation) {
parent::__construct('Plugin/search_api/processor', $namespaces, $module_handler, $eventDispatcher, 'Drupal\\search_api\\Processor\\ProcessorInterface', 'Drupal\\search_api\\Annotation\\SearchApiProcessor');
$this
->setCacheBackend($cache_backend, 'search_api_processors');
$this
->alterInfo('search_api_processor_info');
$this
->alterEvent(SearchApiEvents::GATHERING_PROCESSORS);
$this
->setStringTranslation($translation);
}