You are here

public function ConsentStorageManager::__construct in EU Cookie Compliance (GDPR Compliance) 2.0.x

Same name and namespace in other branches
  1. 8 src/Plugin/ConsentStorageManager.php \Drupal\eu_cookie_compliance\Plugin\ConsentStorageManager::__construct()

Constructs a ConsentStorageManager 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: Cache backend instance to use.

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler to invoke the alter hook with.

Overrides DefaultPluginManager::__construct

File

src/Plugin/ConsentStorageManager.php, line 30

Class

ConsentStorageManager
Provides an ConsentStorage plugin manager.

Namespace

Drupal\eu_cookie_compliance\Plugin

Code

public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
  parent::__construct('Plugin/ConsentStorage', $namespaces, $module_handler, 'Drupal\\eu_cookie_compliance\\Plugin\\ConsentStorageInterface', 'Drupal\\eu_cookie_compliance\\Annotation\\ConsentStorage');
  $this
    ->alterInfo('consent_storage_info');
  $this
    ->setCacheBackend($cache_backend, 'consent_storage_info_plugins');
}