ConfigTranslationDeleteForm::__construct

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

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;
}
doc_Drupal
2016-10-29 08:54:47
Comments
Leave a Comment

Please login to continue.