You are here

public function ConfigActionsSourceManager::__construct in Config Actions 8

Constructs a new ConfigActionsSource 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/ConfigActionsSourceManager.php, line 25

Class

ConfigActionsSourceManager
Manages configuration packaging methods.

Namespace

Drupal\config_actions

Code

public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
  parent::__construct('Plugin/ConfigActionsSource', $namespaces, $module_handler, 'Drupal\\config_actions\\ConfigActionsSourceInterface', 'Drupal\\config_actions\\Annotation\\ConfigActionsSource');
  $this
    ->alterInfo('config_actions');
  $this
    ->setCacheBackend($cache_backend, 'config_actions_source');
}