You are here

public function RabbitHoleBehaviorPluginManager::__construct in Rabbit Hole 8

Same name and namespace in other branches
  1. 2.x src/Plugin/RabbitHoleBehaviorPluginManager.php \Drupal\rabbit_hole\Plugin\RabbitHoleBehaviorPluginManager::__construct()

Constructor for RabbitHoleBehaviorPluginManager objects.

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/RabbitHoleBehaviorPluginManager.php, line 25

Class

RabbitHoleBehaviorPluginManager
Provides the Rabbit hole behavior plugin plugin manager.

Namespace

Drupal\rabbit_hole\Plugin

Code

public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
  parent::__construct('Plugin/RabbitHoleBehaviorPlugin', $namespaces, $module_handler, 'Drupal\\rabbit_hole\\Plugin\\RabbitHoleBehaviorPluginInterface', 'Drupal\\rabbit_hole\\Annotation\\RabbitHoleBehaviorPlugin');
  $this
    ->alterInfo('rabbit_hole_rabbit_hole_behavior_plugin_info');
  $this
    ->setCacheBackend($cache_backend, 'rabbit_hole_rabbit_hole_behavior_plugin_plugins');
}