You are here

public function FeaturesGenerationMethodManager::__construct in Features 8.4

Same name and namespace in other branches
  1. 8.3 src/FeaturesGenerationMethodManager.php \Drupal\features\FeaturesGenerationMethodManager::__construct()

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

Class

FeaturesGenerationMethodManager
Manages configuration packaging methods.

Namespace

Drupal\features

Code

public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
  parent::__construct('Plugin/FeaturesGeneration', $namespaces, $module_handler, 'Drupal\\features\\FeaturesGenerationMethodInterface');
  $this->cacheBackend = $cache_backend;
  $this->cacheKeyPrefix = 'features_generation_methods';
  $this->cacheKey = 'features_generation_methods';
  $this
    ->alterInfo('features_generation_info');
}