You are here

protected function SimpleMegaMenuRevisionRevertTranslationForm::prepareRevertedRevision in Simple Mega Menu 2.0.x

Same name and namespace in other branches
  1. 8 src/Form/SimpleMegaMenuRevisionRevertTranslationForm.php \Drupal\simple_megamenu\Form\SimpleMegaMenuRevisionRevertTranslationForm::prepareRevertedRevision()

Prepares a revision to be reverted.

Parameters

\Drupal\simple_megamenu\Entity\SimpleMegaMenuInterface $revision: The revision to be reverted.

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

Return value

\Drupal\simple_megamenu\Entity\SimpleMegaMenuInterface The prepared revision ready to be stored.

Overrides SimpleMegaMenuRevisionRevertForm::prepareRevertedRevision

File

src/Form/SimpleMegaMenuRevisionRevertTranslationForm.php, line 96

Class

SimpleMegaMenuRevisionRevertTranslationForm
Provides a form for reverting a megamenu revision for a single translation.

Namespace

Drupal\simple_megamenu\Form

Code

protected function prepareRevertedRevision(SimpleMegaMenuInterface $revision, FormStateInterface $form_state) {
  $revert_untranslated_fields = $form_state
    ->getValue('revert_untranslated_fields');

  /** @var \Drupal\simple_megamenu\Entity\SimpleMegaMenuInterface $default_revision */
  $latest_revision = $this->simpleMegaMenuStorage
    ->load($revision
    ->id());
  $latest_revision_translation = $latest_revision
    ->getTranslation($this->langcode);
  $revision_translation = $revision
    ->getTranslation($this->langcode);
  foreach ($latest_revision_translation
    ->getFieldDefinitions() as $field_name => $definition) {
    if ($definition
      ->isTranslatable() || $revert_untranslated_fields) {
      $latest_revision_translation
        ->set($field_name, $revision_translation
        ->get($field_name)
        ->getValue());
    }
  }
  $latest_revision_translation
    ->setNewRevision();
  $latest_revision_translation
    ->isDefaultRevision(TRUE);
  $revision
    ->setRevisionCreationTime($this->time
    ->getRequestTime());
  return $latest_revision_translation;
}