SimpleMegaMenuRevisionRevertForm.php in Simple Mega Menu 8
File
src/Form/SimpleMegaMenuRevisionRevertForm.php
View source
<?php
namespace Drupal\simple_megamenu\Form;
use Drupal\Component\Datetime\Time;
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\simple_megamenu\Entity\SimpleMegaMenuInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class SimpleMegaMenuRevisionRevertForm extends ConfirmFormBase {
protected $revision;
protected $simpleMegaMenuStorage;
protected $dateFormatter;
protected $time;
public function __construct(EntityStorageInterface $entity_storage, DateFormatterInterface $date_formatter, Time $time) {
$this->simpleMegaMenuStorage = $entity_storage;
$this->dateFormatter = $date_formatter;
$this->time = $time;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('entity_type.manager')
->getStorage('simple_mega_menu'), $container
->get('date.formatter'), $container
->get('datetime.time'));
}
public function getFormId() {
return 'simple_mega_menu_revision_revert_confirm';
}
public function getQuestion() {
return $this
->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.simple_mega_menu.version_history', [
'simple_mega_menu' => $this->revision
->id(),
]);
}
public function getConfirmText() {
return $this
->t('Revert');
}
public function getDescription() {
return '';
}
public function buildForm(array $form, FormStateInterface $form_state, $simple_mega_menu_revision = NULL) {
$this->revision = $this->simpleMegaMenuStorage
->loadRevision($simple_mega_menu_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 = $this
->t('Copy of the revision from %date.', [
'%date' => $this->dateFormatter
->format($original_revision_timestamp),
]);
$this->revision
->save();
$this
->logger('content')
->notice('Simple mega menu: reverted %title revision %revision.', [
'%title' => $this->revision
->label(),
'%revision' => $this->revision
->getRevisionId(),
]);
$this
->messenger()
->addStatus($this
->t('Simple mega menu %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.simple_mega_menu.version_history', [
'simple_mega_menu' => $this->revision
->id(),
]);
}
protected function prepareRevertedRevision(SimpleMegaMenuInterface $revision, FormStateInterface $form_state) {
$revision
->setNewRevision();
$revision
->isDefaultRevision(TRUE);
$revision
->setRevisionCreationTime($this->time
->getRequestTime());
return $revision;
}
}