You are here

public function MaestroEngineTasksPluginManager::__construct in Maestro 3.x

Same name and namespace in other branches
  1. 8.2 src/MaestroEngineTasksPluginManager.php \Drupal\maestro\MaestroEngineTasksPluginManager::__construct()

Creates the discovery 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 to invoke the alter hook with.

Overrides DefaultPluginManager::__construct

File

src/MaestroEngineTasksPluginManager.php, line 27

Class

MaestroEngineTasksPluginManager
Manages Maestro Engine Task plugins.

Namespace

Drupal\maestro

Code

public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
  $subdir = 'Plugin/EngineTasks';
  $plugin_interface = 'Drupal\\maestro\\MaestroEngineTaskInterface';

  // The name of the annotation class that contains the plugin definition.
  $plugin_definition_annotation_name = 'Drupal\\Component\\Annotation\\Plugin';
  parent::__construct($subdir, $namespaces, $module_handler, $plugin_interface, $plugin_definition_annotation_name);
  $this
    ->alterInfo('maestro_tasks_info');
  $this
    ->setCacheBackend($cache_backend, 'maestro_tasks_info');
}