116 lines
3.6 KiB
PHP
116 lines
3.6 KiB
PHP
<?php
|
|
|
|
namespace Drupal\opencase_entities\Form;
|
|
|
|
use Drupal\Core\Datetime\DateFormatterInterface;
|
|
use Drupal\Core\Entity\EntityStorageInterface;
|
|
use Drupal\Core\Form\FormStateInterface;
|
|
use Drupal\Core\Language\LanguageManagerInterface;
|
|
use Drupal\opencase_entities\Entity\OCActorInterface;
|
|
use Symfony\Component\DependencyInjection\ContainerInterface;
|
|
|
|
/**
|
|
* Provides a form for reverting a Actor revision for a single translation.
|
|
*
|
|
* @ingroup opencase_entities
|
|
*/
|
|
class OCActorRevisionRevertTranslationForm extends OCActorRevisionRevertForm {
|
|
|
|
|
|
/**
|
|
* The language to be reverted.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $langcode;
|
|
|
|
/**
|
|
* The language manager.
|
|
*
|
|
* @var \Drupal\Core\Language\LanguageManagerInterface
|
|
*/
|
|
protected $languageManager;
|
|
|
|
/**
|
|
* Constructs a new OCActorRevisionRevertTranslationForm.
|
|
*
|
|
* @param \Drupal\Core\Entity\EntityStorageInterface $entity_storage
|
|
* The Actor storage.
|
|
* @param \Drupal\Core\Datetime\DateFormatterInterface $date_formatter
|
|
* The date formatter service.
|
|
* @param \Drupal\Core\Language\LanguageManagerInterface $language_manager
|
|
* The language manager.
|
|
*/
|
|
public function __construct(EntityStorageInterface $entity_storage, DateFormatterInterface $date_formatter, LanguageManagerInterface $language_manager) {
|
|
parent::__construct($entity_storage, $date_formatter);
|
|
$this->languageManager = $language_manager;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public static function create(ContainerInterface $container) {
|
|
return new static(
|
|
$container->get('entity.manager')->getStorage('oc_actor'),
|
|
$container->get('date.formatter'),
|
|
$container->get('language_manager')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getFormId() {
|
|
return 'oc_actor_revision_revert_translation_confirm';
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getQuestion() {
|
|
return t('Are you sure you want to revert @language translation to the revision from %revision-date?', ['@language' => $this->languageManager->getLanguageName($this->langcode), '%revision-date' => $this->dateFormatter->format($this->revision->getRevisionCreationTime())]);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function buildForm(array $form, FormStateInterface $form_state, $oc_actor_revision = NULL, $langcode = NULL) {
|
|
$this->langcode = $langcode;
|
|
$form = parent::buildForm($form, $form_state, $oc_actor_revision);
|
|
|
|
$form['revert_untranslated_fields'] = [
|
|
'#type' => 'checkbox',
|
|
'#title' => $this->t('Revert content shared among translations'),
|
|
'#default_value' => FALSE,
|
|
];
|
|
|
|
return $form;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function prepareRevertedRevision(OCActorInterface $revision, FormStateInterface $form_state) {
|
|
$revert_untranslated_fields = $form_state->getValue('revert_untranslated_fields');
|
|
|
|
/** @var \Drupal\opencase_entities\Entity\OCActorInterface $default_revision */
|
|
$latest_revision = $this->OCActorStorage->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(REQUEST_TIME);
|
|
|
|
return $latest_revision_translation;
|
|
}
|
|
|
|
}
|