OpignoAnswerRevisionRevertForm.php in Opigno module 8
File
src/Form/OpignoAnswerRevisionRevertForm.php
View source
<?php
namespace Drupal\opigno_module\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\opigno_module\Entity\OpignoAnswerInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class OpignoAnswerRevisionRevertForm extends ConfirmFormBase {
protected $revision;
protected $OpignoAnswerStorage;
protected $dateFormatter;
public function __construct(EntityStorageInterface $entity_storage, DateFormatterInterface $date_formatter) {
$this->OpignoAnswerStorage = $entity_storage;
$this->dateFormatter = $date_formatter;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('entity_type.manager')
->getStorage('opigno_answer'), $container
->get('date.formatter'));
}
public function getFormId() {
return 'opigno_answer_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.opigno_answer.version_history', [
'opigno_answer' => $this->revision
->id(),
]);
}
public function getConfirmText() {
return t('Revert');
}
public function getDescription() {
return '';
}
public function buildForm(array $form, FormStateInterface $form_state, $opigno_answer_revision = NULL) {
$this->revision = $this->OpignoAnswerStorage
->loadRevision($opigno_answer_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('Answer: reverted %title revision %revision.', [
'%title' => $this->revision
->label(),
'%revision' => $this->revision
->getRevisionId(),
]);
\Drupal::messenger()
->addMessage(t('Answer %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.opigno_answer.version_history', [
'opigno_answer' => $this->revision
->id(),
]);
}
protected function prepareRevertedRevision(OpignoAnswerInterface $revision, FormStateInterface $form_state) {
$revision
->setNewRevision();
$revision
->isDefaultRevision(TRUE);
$revision
->setRevisionCreationTime(\Drupal::time()
->getRequestTime());
return $revision;
}
}