ScheduleRevisionRevertForm.php in Business Rules 2.x
File
src/Form/ScheduleRevisionRevertForm.php
View source
<?php
namespace Drupal\business_rules\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\business_rules\Entity\ScheduleInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class ScheduleRevisionRevertForm extends ConfirmFormBase {
protected $revision;
protected $ScheduleStorage;
protected $dateFormatter;
public function __construct(EntityStorageInterface $entity_storage, DateFormatterInterface $date_formatter) {
$this->ScheduleStorage = $entity_storage;
$this->dateFormatter = $date_formatter;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('entity_type.manager')
->getStorage('business_rules_schedule'), $container
->get('date.formatter'));
}
public function getFormId() {
return 'schedule_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.business_rules_schedule.version_history', [
'schedule' => $this->revision
->id(),
]);
}
public function getConfirmText() {
return t('Revert');
}
public function getDescription() {
return '';
}
public function buildForm(array $form, FormStateInterface $form_state, $schedule_revision = NULL) {
$this->revision = $this->ScheduleStorage
->loadRevision($schedule_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('Schedule: reverted %title revision %revision.', [
'%title' => $this->revision
->label(),
'%revision' => $this->revision
->getRevisionId(),
]);
\Drupal::messenger()
->addMessage(t('Schedule %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.business_rules_schedule.version_history', [
'schedule' => $this->revision
->id(),
]);
}
protected function prepareRevertedRevision(ScheduleInterface $revision, FormStateInterface $form_state) {
$revision
->setNewRevision();
$revision
->isDefaultRevision(TRUE);
$revision
->setRevisionCreationTime(\Drupal::time()
->getRequestTime());
return $revision;
}
}