config_packager-8.x-1.x-dev/src/ConfigPackagerAssignmentMethodManager.php
src/ConfigPackagerAssignmentMethodManager.php
<?php /** * @file * Contains \Drupal\coinfig_packager\ConfigPackagerAssignmentMethodManager. */ namespace Drupal\config_packager; use Drupal\Core\Cache\CacheBackendInterface; use Drupal\Core\Extension\ModuleHandlerInterface; use Drupal\Core\Plugin\DefaultPluginManager; /** * Manages configuration packaging methods. */ class ConfigPackagerAssignmentMethodManager extends DefaultPluginManager { /** * Constructs a new ConfigPackagerAssignmentMethodManager 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 * An object that implements CacheBackendInterface * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler * An object that implements ModuleHandlerInterface */ public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) { parent::__construct('Plugin/ConfigPackagerAssignment', $namespaces, $module_handler, 'Drupal\config_packager\ConfigPackagerAssignmentMethodInterface'); $this->cacheBackend = $cache_backend; $this->cacheKeyPrefix = 'config_packager_assignment_methods'; $this->cacheKey = 'config_packager_assignment_methods'; $this->alterInfo('config_packager_assignment_info'); } }