ConsentAgreementRevisionRevertForm.php in General Data Protection Regulation 8
File
modules/gdpr_consent/src/Form/ConsentAgreementRevisionRevertForm.php
View source
<?php
namespace Drupal\gdpr_consent\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\gdpr_consent\Entity\ConsentAgreementInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class ConsentAgreementRevisionRevertForm extends ConfirmFormBase {
protected $revision;
protected $consentAgreementStorage;
protected $dateFormatter;
public static function create(ContainerInterface $container) {
return new static($container
->get('entity_type.manager')
->getStorage('gdpr_consent_agreement'), $container
->get('date.formatter'));
}
public function __construct(EntityStorageInterface $entityStorage, DateFormatterInterface $dateFormatter) {
$this->consentAgreementStorage = $entityStorage;
$this->dateFormatter = $dateFormatter;
}
public function getFormId() {
return 'gdpr_consent_agreement_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.gdpr_consent_agreement.version_history', [
'gdpr_consent_agreement' => $this->revision
->id(),
]);
}
public function getConfirmText() {
return $this
->t('Revert');
}
public function getDescription() {
return '';
}
public function buildForm(array $form, FormStateInterface $form_state, $gdpr_consent_agreement_revision = NULL) {
$this->revision = $this->consentAgreementStorage
->loadRevision($gdpr_consent_agreement_revision);
$form = parent::buildForm($form, $form_state);
return $form;
}
public function submitForm(array &$form, FormStateInterface $form_state) {
$originalRevisionTimestamp = $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($originalRevisionTimestamp),
]);
$this->revision
->save();
$this
->logger('content')
->notice('Consent Agreement: reverted %title revision %revision.', [
'%title' => $this->revision
->label(),
'%revision' => $this->revision
->getRevisionId(),
]);
\Drupal::messenger()
->addMessage($this
->t('Consent Agreement %title has been reverted to the revision from %revision-date.', [
'%title' => $this->revision
->label(),
'%revision-date' => $this->dateFormatter
->format($originalRevisionTimestamp),
]));
$form_state
->setRedirect('entity.gdpr_consent_agreement.version_history', [
'gdpr_consent_agreement' => $this->revision
->id(),
]);
}
protected function prepareRevertedRevision(ConsentAgreementInterface $revision, FormStateInterface $form_state) {
$revision
->setNewRevision();
$revision
->isDefaultRevision(TRUE);
$revision
->setRevisionCreationTime(REQUEST_TIME);
return $revision;
}
}