alert_types-8.x-1.x-dev/src/Form/AlertRevisionDeleteForm.php
src/Form/AlertRevisionDeleteForm.php
<?php namespace Drupal\alert_types\Form; use Drupal\Core\Database\Connection; use Drupal\Core\Entity\EntityStorageInterface; use Drupal\Core\Datetime\DateFormatterInterface; use Drupal\Core\Form\ConfirmFormBase; use Drupal\Core\Form\FormStateInterface; use Drupal\Core\Messenger\MessengerInterface; use Drupal\Core\Url; use Symfony\Component\DependencyInjection\ContainerInterface; /** * Provides a form for deleting a Alert revision. * * @ingroup alert_types */ class AlertRevisionDeleteForm extends ConfirmFormBase { /** * The Alert revision. * * @var \Drupal\alert_types\Entity\AlertInterface */ protected $revision; /** * The Alert storage. * * @var \Drupal\Core\Entity\EntityStorageInterface */ protected $AlertStorage; /** * The database connection. * * @var \Drupal\Core\Database\Connection */ protected $connection; /** * The date formatter service. * * @var \Drupal\Core\Datetime\DateFormatter */ protected $dateFormatter; /** * The messenger. * * @var \Drupal\Core\Messenger\MessengerInterface */ protected $messenger; /** * Constructs a new AlertRevisionDeleteForm. * * @param \Drupal\Core\Entity\EntityStorageInterface $entity_storage * The entity storage. * @param \Drupal\Core\Database\Connection $connection * The database connection. * @param \Drupal\Core\Datetime\DateFormatterInterface $date_formatter * The date formatter service. * @param \Drupal\Core\Messenger\MessengerInterface $messenger * The messenger. */ public function __construct(EntityStorageInterface $entity_storage, Connection $connection, DateFormatterInterface $date_formatter, MessengerInterface $messenger) { $this->AlertStorage = $entity_storage; $this->connection = $connection; $this->dateFormatter = $date_formatter; $this->messenger = $messenger; } /** * {@inheritdoc} */ public static function create(ContainerInterface $container) { $entity_manager = $container->get('entity_type.manager'); return new static( $entity_manager->getStorage('alert'), $container->get('database'), $container->get('date.formatter'), $container->get('messenger') ); } /** * {@inheritdoc} */ public function getFormId() { return 'alert_revision_delete_confirm'; } /** * {@inheritdoc} */ public function getQuestion() { return $this->t('Are you sure you want to delete the revision from %revision-date?', ['%revision-date' => $this->dateFormatter->format($this->revision->getRevisionCreationTime())]); } /** * {@inheritdoc} */ public function getCancelUrl() { return new Url('entity.alert.version_history', ['alert' => $this->revision->id()]); } /** * {@inheritdoc} */ public function getConfirmText() { return $this->t('Delete'); } /** * {@inheritdoc} */ public function buildForm(array $form, FormStateInterface $form_state, $alert_revision = NULL) { $this->revision = $this->AlertStorage->loadRevision($alert_revision); $form = parent::buildForm($form, $form_state); return $form; } /** * {@inheritdoc} */ public function submitForm(array &$form, FormStateInterface $form_state) { $this->AlertStorage->deleteRevision($this->revision->getRevisionId()); $this->logger('content')->notice('Alert: deleted %title revision %revision.', ['%title' => $this->revision->label(), '%revision' => $this->revision->getRevisionId()]); $this->messenger->addStatus($this->t('Revision from %revision-date of Alert %title has been deleted.', ['%revision-date' => $this->dateFormatter->format($this->revision->getRevisionCreationTime()), '%title' => $this->revision->label()])); $form_state->setRedirect( 'entity.alert.canonical', ['alert' => $this->revision->id()] ); if ($this->connection->query('SELECT COUNT(DISTINCT vid) FROM {alert_field_revision} WHERE id = :id', [':id' => $this->revision->id()])->fetchField() > 1) { $form_state->setRedirect( 'entity.alert.version_history', ['alert' => $this->revision->id()] ); } } }