ContentTranslationDeleteForm.php

Same filename and directory in other branches
  1. 9 core/modules/content_translation/src/Form/ContentTranslationDeleteForm.php
  2. 8.9.x core/modules/content_translation/src/Form/ContentTranslationDeleteForm.php
  3. 10 core/modules/content_translation/src/Form/ContentTranslationDeleteForm.php

Namespace

Drupal\content_translation\Form

File

core/modules/content_translation/src/Form/ContentTranslationDeleteForm.php

View source
<?php

namespace Drupal\content_translation\Form;

use Drupal\Core\Entity\ContentEntityDeleteForm;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Language\LanguageInterface;

/**
 * Delete translation form for content_translation module.
 *
 * @internal
 */
class ContentTranslationDeleteForm extends ContentEntityDeleteForm {
    
    /**
     * {@inheritdoc}
     */
    public function getFormId() {
        return 'content_translation_delete_confirm';
    }
    
    /**
     * {@inheritdoc}
     */
    public function buildForm(array $form, FormStateInterface $form_state, ?LanguageInterface $language = NULL) {
        if ($language) {
            $form_state->set('langcode', $language->getId());
        }
        return parent::buildForm($form, $form_state);
    }

}

Classes

Title Deprecated Summary
ContentTranslationDeleteForm Delete translation form for content_translation module.

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