You are here

public function FlaggingCollectionRevisionRevertTranslationForm::buildForm in Flag Lists 4.0.x

Same name and namespace in other branches
  1. 8 src/Form/FlaggingCollectionRevisionRevertTranslationForm.php \Drupal\flag_lists\Form\FlaggingCollectionRevisionRevertTranslationForm::buildForm()

Form constructor.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The form structure.

Overrides FlaggingCollectionRevisionRevertForm::buildForm

File

src/Form/FlaggingCollectionRevisionRevertTranslationForm.php, line 84

Class

FlaggingCollectionRevisionRevertTranslationForm
Provides a form for reverting a Flagging collection revision.

Namespace

Drupal\flag_lists\Form

Code

public function buildForm(array $form, FormStateInterface $form_state, $flagging_collection_revision = NULL, $langcode = NULL) {
  $this->langcode = $langcode;
  $form = parent::buildForm($form, $form_state, $flagging_collection_revision);
  $form['revert_untranslated_fields'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Revert content shared among translations'),
    '#default_value' => FALSE,
  ];
  return $form;
}