You are here

public function WebformHandlerManager::__construct in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformHandlerManager.php \Drupal\webform\Plugin\WebformHandlerManager::__construct()

Constructs a WebformHandlerManager 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.

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The configuration object factory.

Overrides DefaultPluginManager::__construct

File

src/Plugin/WebformHandlerManager.php, line 47

Class

WebformHandlerManager
Manages webform handler plugins.

Namespace

Drupal\webform\Plugin

Code

public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler, ConfigFactoryInterface $config_factory) {
  parent::__construct('Plugin/WebformHandler', $namespaces, $module_handler, 'Drupal\\webform\\Plugin\\WebformHandlerInterface', 'Drupal\\webform\\Annotation\\WebformHandler');
  $this->configFactory = $config_factory;
  $this
    ->alterInfo('webform_handler_info');
  $this
    ->setCacheBackend($cache_backend, 'webform_handler_plugins');
}