public function DataPolicyRevisionRevertTranslationForm::buildForm in Data Policy 8
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 DataPolicyRevisionRevertForm::buildForm
File
- src/
Form/ DataPolicyRevisionRevertTranslationForm.php, line 88
Class
- DataPolicyRevisionRevertTranslationForm
- Provides a form for reverting a revision for a single translation.
Namespace
Drupal\data_policy\FormCode
public function buildForm(array $form, FormStateInterface $form_state, $data_policy_revision = NULL, $langcode = NULL) {
$this->langcode = $langcode;
$form = parent::buildForm($form, $form_state, $data_policy_revision);
$form['revert_untranslated_fields'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Revert content shared among translations'),
'#default_value' => FALSE,
];
return $form;
}