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