public function DataPolicyExportPluginManager::__construct in Data Policy 8
Constructs a new DataPolicyExportPluginManager 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
- modules/
data_policy_export/ src/ Plugin/ DataPolicyExportPluginManager.php, line 26
Class
- DataPolicyExportPluginManager
- Provides the Data Policy export plugin plugin manager.
Namespace
Drupal\data_policy_export\PluginCode
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
parent::__construct('Plugin/DataPolicyExportPlugin', $namespaces, $module_handler, DataPolicyExportPluginInterface::class, DataPolicyExportPlugin::class);
$this
->alterInfo('data_policy_export_plugin_info');
$this
->setCacheBackend($cache_backend, 'data_policy_export_data_policy_export_plugin_plugins');
}