You are here

public function ParseModePluginManager::__construct in Search API 8

Constructs a ParseModePluginManager 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.

Overrides SearchApiPluginManager::__construct

File

src/ParseMode/ParseModePluginManager.php, line 34

Class

ParseModePluginManager
Manages parse mode plugins.

Namespace

Drupal\search_api\ParseMode

Code

public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler, EventDispatcherInterface $eventDispatcher) {
  parent::__construct('Plugin/search_api/parse_mode', $namespaces, $module_handler, $eventDispatcher, 'Drupal\\search_api\\ParseMode\\ParseModeInterface', 'Drupal\\search_api\\Annotation\\SearchApiParseMode');
  $this
    ->setCacheBackend($cache_backend, 'search_api_parse_mode');
  $this
    ->alterInfo('search_api_parse_mode_info');
  $this
    ->alterEvent(SearchApiEvents::GATHERING_PARSE_MODES);
}