You are here

public function TypedDataManager::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/TypedData/TypedDataManager.php \Drupal\Core\TypedData\TypedDataManager::__construct()
  2. 10 core/lib/Drupal/Core/TypedData/TypedDataManager.php \Drupal\Core\TypedData\TypedDataManager::__construct()

Constructs a new TypedDataManager.

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\DependencyInjection\ClassResolverInterface $class_resolver: The class resolver.

Overrides DefaultPluginManager::__construct

1 method overrides TypedDataManager::__construct()
TypedConfigManager::__construct in core/lib/Drupal/Core/Config/TypedConfigManager.php
Creates a new typed configuration manager.

File

core/lib/Drupal/Core/TypedData/TypedDataManager.php, line 65

Class

TypedDataManager
Manages data type plugins.

Namespace

Drupal\Core\TypedData

Code

public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler, ClassResolverInterface $class_resolver) {
  $this
    ->alterInfo('data_type_info');
  $this
    ->setCacheBackend($cache_backend, 'typed_data_types_plugins');
  $this->classResolver = $class_resolver;
  parent::__construct('Plugin/DataType', $namespaces, $module_handler, NULL, 'Drupal\\Core\\TypedData\\Annotation\\DataType');
}