function DevelGeneratePluginManager::__construct
Constructs a DevelGeneratePluginManager 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.
\Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager: The entity type manager.
\Drupal\Core\Messenger\MessengerInterface $messenger: The messenger service.
\Drupal\Core\Language\LanguageManagerInterface $languageManager: The language manager.
\Drupal\Core\StringTranslation\TranslationInterface $stringTranslation: The translation manager.
\Drupal\Core\Entity\EntityFieldManagerInterface $entityFieldManager: The entity field manager.
Overrides DefaultPluginManager::__construct
File
-
devel_generate/
src/ DevelGeneratePluginManager.php, line 41
Class
- DevelGeneratePluginManager
- Plugin type manager for DevelGenerate plugins.
Namespace
Drupal\devel_generateCode
public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler, protected EntityTypeManagerInterface $entityTypeManager, protected MessengerInterface $messenger, protected LanguageManagerInterface $languageManager, protected TranslationInterface $stringTranslation, protected EntityFieldManagerInterface $entityFieldManager) {
parent::__construct('Plugin/DevelGenerate', $namespaces, $module_handler, NULL, DevelGenerate::class);
$this->moduleHandler = $module_handler;
$this->alterInfo('devel_generate_info');
$this->setCacheBackend($cache_backend, 'devel_generate_plugins');
}