OpignoAnswerRevisionDeleteForm.php in Opigno module 3.x
File
src/Form/OpignoAnswerRevisionDeleteForm.php
View source
<?php
namespace Drupal\opigno_module\Form;
use Drupal\Core\Database\Connection;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Form\ConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;
use Symfony\Component\DependencyInjection\ContainerInterface;
class OpignoAnswerRevisionDeleteForm extends ConfirmFormBase {
protected $revision;
protected $OpignoAnswerStorage;
protected $connection;
public function __construct(EntityStorageInterface $entity_storage, Connection $connection) {
$this->OpignoAnswerStorage = $entity_storage;
$this->connection = $connection;
}
public static function create(ContainerInterface $container) {
$entity_manager = $container
->get('entity_type.manager');
return new static($entity_manager
->getStorage('opigno_answer'), $container
->get('database'));
}
public function getFormId() {
return 'opigno_answer_revision_delete_confirm';
}
public function getQuestion() {
$date_formatter = \Drupal::service('date.formatter');
return t('Are you sure you want to delete the revision from %revision-date?', [
'%revision-date' => $date_formatter
->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('Delete');
}
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) {
$this->OpignoAnswerStorage
->deleteRevision($this->revision
->getRevisionId());
$date_formatter = \Drupal::service('date.formatter');
$this
->logger('content')
->notice('Answer: deleted %title revision %revision.', [
'%title' => $this->revision
->label(),
'%revision' => $this->revision
->getRevisionId(),
]);
\Drupal::messenger()
->addMessage(t('Revision from %revision-date of Answer %title has been deleted.', [
'%revision-date' => $date_formatter
->format($this->revision
->getRevisionCreationTime()),
'%title' => $this->revision
->label(),
]));
$form_state
->setRedirect('entity.opigno_answer.canonical', [
'opigno_answer' => $this->revision
->id(),
]);
if ($this->connection
->query('SELECT COUNT(DISTINCT vid) FROM {opigno_answer_field_revision} WHERE id = :id', [
':id' => $this->revision
->id(),
])
->fetchField() > 1) {
$form_state
->setRedirect('entity.opigno_answer.version_history', [
'opigno_answer' => $this->revision
->id(),
]);
}
}
}