protected function HomeboxLayoutRevisionRevertTranslationForm::prepareRevertedRevision in Homebox 8
Prepares a revision to be reverted.
Parameters
\Drupal\homebox\Entity\HomeboxLayoutInterface $revision: The revision to be reverted.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
\Drupal\homebox\Entity\HomeboxLayoutInterface The prepared revision ready to be stored.
Overrides HomeboxLayoutRevisionRevertForm::prepareRevertedRevision
File
- src/
Form/ HomeboxLayoutRevisionRevertTranslationForm.php, line 102
Class
- HomeboxLayoutRevisionRevertTranslationForm
- Homebox Layout revision reverting form for a single translation.
Namespace
Drupal\homebox\FormCode
protected function prepareRevertedRevision(HomeboxLayoutInterface $revision, FormStateInterface $form_state) {
$revert_untranslated_fields = $form_state
->getValue('revert_untranslated_fields');
/** @var \Drupal\homebox\Entity\HomeboxLayoutInterface $latest_revision */
$latest_revision = $this->homeboxLayoutStorage
->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;
}