access_policy-1.0.x-dev/src/Http403ResponsePluginManager.php
src/Http403ResponsePluginManager.php
<?php namespace Drupal\access_policy; use Drupal\Core\Cache\CacheBackendInterface; use Drupal\Core\Extension\ModuleHandlerInterface; use Drupal\Core\Plugin\DefaultPluginManager; /** * Access denied behavior plugin manager. */ class Http403ResponsePluginManager extends DefaultPluginManager { /** * Http403ResponsePluginManager constructor. * * @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 * Cache backend instance to use. * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler * The module handler to invoke the alter hook with. */ public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) { parent::__construct('Plugin/access_policy/Http403Response', $namespaces, $module_handler, 'Drupal\access_policy\Plugin\access_policy\Http403Response\Http403ResponseInterface', 'Drupal\access_policy\Annotation\Http403Response'); $this->alterInfo('http_403_response'); $this->setCacheBackend($cache_backend, 'http_403_response'); } }