ConfigTranslationEditForm.php
Same filename in other branches
Namespace
Drupal\config_translation\FormFile
-
core/
modules/ config_translation/ src/ Form/ ConfigTranslationEditForm.php
View source
<?php
namespace Drupal\config_translation\Form;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Defines a form for editing configuration translations.
*
* @internal
*/
class ConfigTranslationEditForm extends ConfigTranslationFormBase {
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'config_translation_edit_form';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state, ?RouteMatchInterface $route_match = NULL, $plugin_id = NULL, $langcode = NULL) {
$form = parent::buildForm($form, $form_state, $route_match, $plugin_id, $langcode);
$form['#title'] = $this->t('Edit @language translation for %label', [
'%label' => $this->mapper
->getTitle(),
'@language' => $this->language
->getName(),
]);
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
parent::submitForm($form, $form_state);
$this->messenger()
->addStatus($this->t('Successfully updated @language translation.', [
'@language' => $this->language
->getName(),
]));
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
ConfigTranslationEditForm | Defines a form for editing configuration translations. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.