maestro-3.0.1-rc2/src/MaestroEngineTasksPluginManager.php
src/MaestroEngineTasksPluginManager.php
<?php
namespace Drupal\maestro;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Plugin\DefaultPluginManager;
/**
* Manages Maestro Engine Task plugins.
*
* Please see maestro.services.yml file.
*/
class MaestroEngineTasksPluginManager extends DefaultPluginManager {
/**
* Creates the discovery object.
*
* @param \Traversable $namespaces
* An object that implements \Traversable which contains the root paths
* keyed by the corresponding namespace to look for plugin implementations.
* @param \Drupal\Core\Cache\CacheBackendInterface $cache_backend
* Cache backend instance to use.
* @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
* The module handler to invoke the alter hook with.
*/
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');
}
}
