You are here

public function LanguageCookieConditionManager::__construct in Language Cookie 8

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

Class

LanguageCookieConditionManager
Manages language cookie condition plugins.

Namespace

Drupal\language_cookie

Code

public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
  parent::__construct('Plugin/LanguageCookieCondition', $namespaces, $module_handler, LanguageCookieConditionInterface::class, LanguageCookieCondition::class);
  $this
    ->setCacheBackend($cache_backend, 'language_cookie_condition_plugins');
  $this
    ->alterInfo('language_cookie_condition_info');
}