EasyEmailRevisionRevertForm.php in Easy Email 8
File
src/Form/EasyEmailRevisionRevertForm.php
View source
<?php
namespace Drupal\easy_email\Form;
use Drupal\Core\Datetime\DateFormatterInterface;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Form\ConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;
use Drupal\easy_email\Entity\EasyEmailInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class EasyEmailRevisionRevertForm extends ConfirmFormBase {
protected $revision;
protected $EasyEmailStorage;
protected $dateFormatter;
public function __construct(EntityStorageInterface $entity_storage, DateFormatterInterface $date_formatter) {
$this->EasyEmailStorage = $entity_storage;
$this->dateFormatter = $date_formatter;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('entity_type.manager')
->getStorage('easy_email'), $container
->get('date.formatter'));
}
public function getFormId() {
return 'easy_email_revision_revert_confirm';
}
public function getQuestion() {
return t('Are you sure you want to revert to the revision from %revision-date?', [
'%revision-date' => $this->dateFormatter
->format($this->revision
->getRevisionCreationTime()),
]);
}
public function getCancelUrl() {
return new Url('entity.easy_email.version_history', [
'easy_email' => $this->revision
->id(),
]);
}
public function getConfirmText() {
return t('Revert');
}
public function getDescription() {
return '';
}
public function buildForm(array $form, FormStateInterface $form_state, $easy_email_revision = NULL) {
$this->revision = $this->EasyEmailStorage
->loadRevision($easy_email_revision);
$form = parent::buildForm($form, $form_state);
return $form;
}
public function submitForm(array &$form, FormStateInterface $form_state) {
$original_revision_timestamp = $this->revision
->getRevisionCreationTime();
$this->revision = $this
->prepareRevertedRevision($this->revision, $form_state);
$this->revision->revision_log = t('Copy of the revision from %date.', [
'%date' => $this->dateFormatter
->format($original_revision_timestamp),
]);
$this->revision
->save();
$this
->logger('content')
->notice('Email: reverted %title revision %revision.', [
'%title' => $this->revision
->label(),
'%revision' => $this->revision
->getRevisionId(),
]);
\Drupal::messenger()
->addStatus(t('Email %title has been reverted to the revision from %revision-date.', [
'%title' => $this->revision
->label(),
'%revision-date' => $this->dateFormatter
->format($original_revision_timestamp),
]));
$form_state
->setRedirect('entity.easy_email.version_history', [
'easy_email' => $this->revision
->id(),
]);
}
protected function prepareRevertedRevision(EasyEmailInterface $revision, FormStateInterface $form_state) {
$revision
->setNewRevision();
$revision
->isDefaultRevision(TRUE);
$revision
->setRevisionCreationTime(\Drupal::time()
->getRequestTime());
return $revision;
}
}