You are here

public function ConfigActionsPluginManager::__construct in Config Actions 8

Constructs a new ConfigActionsPlugin 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: An object that implements CacheBackendInterface.

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: An object that implements ModuleHandlerInterface.

Overrides DefaultPluginManager::__construct

File

src/ConfigActionsPluginManager.php, line 25

Class

ConfigActionsPluginManager
Manages configuration packaging methods.

Namespace

Drupal\config_actions

Code

public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
  parent::__construct('Plugin/ConfigActions', $namespaces, $module_handler, 'Drupal\\config_actions\\ConfigActionsPluginInterface', 'Drupal\\config_actions\\Annotation\\ConfigActionsPlugin');
  $this
    ->setCacheBackend($cache_backend, 'config_actions_plugins');
  $this
    ->alterInfo('config_actions_info');
}