public ConfigTranslationDeleteForm::__construct(ConfigurableLanguageManagerInterface $language_manager, ConfigMapperManagerInterface $config_mapper_manager, ModuleHandlerInterface $module_handler)
Constructs a ConfigTranslationDeleteForm.
Parameters
\Drupal\language\ConfigurableLanguageManagerInterface $language_manager: The language override configuration storage.
\Drupal\config_translation\ConfigMapperManagerInterface $config_mapper_manager: The configuration mapper manager.
\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler.
File
- core/modules/config_translation/src/Form/ConfigTranslationDeleteForm.php, line 66
Class
- ConfigTranslationDeleteForm
- Builds a form to delete configuration translation.
Namespace
Drupal\config_translation\Form
Code
1 2 3 4 5 | public function __construct(ConfigurableLanguageManagerInterface $language_manager , ConfigMapperManagerInterface $config_mapper_manager , ModuleHandlerInterface $module_handler ) { $this ->languageManager = $language_manager ; $this ->configMapperManager = $config_mapper_manager ; $this ->moduleHandler = $module_handler ; } |
Please login to continue.