public function EntityProviderManager::__construct in Crop API 8
Same name and namespace in other branches
- 8.2 src/EntityProviderManager.php \Drupal\crop\EntityProviderManager::__construct()
Constructs a new EntityProviderManager.
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.
Overrides DefaultPluginManager::__construct
File
- src/
EntityProviderManager.php, line 25
Class
- EntityProviderManager
- Manages crop entity provider plugins.
Namespace
Drupal\cropCode
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
parent::__construct('Plugin/Crop/EntityProvider', $namespaces, $module_handler, 'Drupal\\crop\\EntityProviderInterface', 'Drupal\\crop\\Annotation\\CropEntityProvider');
$this
->alterInfo('crop_entity_provider_info');
$this
->setCacheBackend($cache_backend, 'crop_entity_provider_plugins');
}