function ProfileTranslationHandler::entityFormSave

Same name and namespace in other branches
  1. 9 core/modules/user/src/ProfileTranslationHandler.php \Drupal\user\ProfileTranslationHandler::entityFormSave()
  2. 8.9.x core/modules/user/src/ProfileTranslationHandler.php \Drupal\user\ProfileTranslationHandler::entityFormSave()
  3. 10 core/modules/user/src/ProfileTranslationHandler.php \Drupal\user\ProfileTranslationHandler::entityFormSave()

Form submission handler for ProfileTranslationHandler::entityFormAlter().

This handles the save action.

See also

\Drupal\Core\Entity\EntityForm::build()

File

core/modules/user/src/ProfileTranslationHandler.php, line 45

Class

ProfileTranslationHandler
Defines the translation handler for users.

Namespace

Drupal\user

Code

public function entityFormSave(array $form, FormStateInterface $form_state) {
    if ($this->getSourceLangcode($form_state)) {
        $entity = $form_state->getFormObject()
            ->getEntity();
        // We need a redirect here, otherwise we would get an access denied page
        // since the current URL would be preserved and we would try to add a
        // translation for a language that already has a translation.
        $form_state->setRedirectUrl($entity->toUrl());
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.