HeartbeatRevisionDeleteForm.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <?php
  2. namespace Drupal\heartbeat\Form;
  3. use Drupal\Core\Database\Connection;
  4. use Drupal\Core\Entity\EntityStorageInterface;
  5. use Drupal\Core\Form\ConfirmFormBase;
  6. use Drupal\Core\Form\FormStateInterface;
  7. use Drupal\Core\Url;
  8. use Symfony\Component\DependencyInjection\ContainerInterface;
  9. /**
  10. * Provides a form for deleting a Heartbeat revision.
  11. *
  12. * @ingroup heartbeat
  13. */
  14. class HeartbeatRevisionDeleteForm extends ConfirmFormBase {
  15. /**
  16. * The Heartbeat revision.
  17. *
  18. * @var \Drupal\heartbeat\Entity\HeartbeatInterface
  19. */
  20. protected $revision;
  21. /**
  22. * The Heartbeat storage.
  23. *
  24. * @var \Drupal\Core\Entity\EntityStorageInterface
  25. */
  26. protected $HeartbeatStorage;
  27. /**
  28. * The database connection.
  29. *
  30. * @var \Drupal\Core\Database\Connection
  31. */
  32. protected $connection;
  33. /**
  34. * Constructs a new HeartbeatRevisionDeleteForm.
  35. *
  36. * @param \Drupal\Core\Entity\EntityStorageInterface $entity_storage
  37. * The entity storage.
  38. * @param \Drupal\Core\Database\Connection $connection
  39. * The database connection.
  40. */
  41. public function __construct(EntityStorageInterface $entity_storage, Connection $connection) {
  42. $this->HeartbeatStorage = $entity_storage;
  43. $this->connection = $connection;
  44. }
  45. /**
  46. * {@inheritdoc}
  47. */
  48. public static function create(ContainerInterface $container) {
  49. $entity_manager = $container->get('entity.manager');
  50. return new static(
  51. $entity_manager->getStorage('heartbeat'),
  52. $container->get('database')
  53. );
  54. }
  55. /**
  56. * {@inheritdoc}
  57. */
  58. public function getFormId() {
  59. return 'heartbeat_revision_delete_confirm';
  60. }
  61. /**
  62. * {@inheritdoc}
  63. */
  64. public function getQuestion() {
  65. return t('Are you sure you want to delete the revision from %revision-date?', array('%revision-date' => format_date($this->revision->getRevisionCreationTime())));
  66. }
  67. /**
  68. * {@inheritdoc}
  69. */
  70. public function getCancelUrl() {
  71. return new Url('entity.heartbeat.version_history', array('heartbeat' => $this->revision->id()));
  72. }
  73. /**
  74. * {@inheritdoc}
  75. */
  76. public function getConfirmText() {
  77. return t('Delete');
  78. }
  79. /**
  80. * {@inheritdoc}
  81. */
  82. public function buildForm(array $form, FormStateInterface $form_state, $heartbeat_revision = NULL) {
  83. $this->revision = $this->HeartbeatStorage->loadRevision($heartbeat_revision);
  84. $form = parent::buildForm($form, $form_state);
  85. return $form;
  86. }
  87. /**
  88. * {@inheritdoc}
  89. */
  90. public function submitForm(array &$form, FormStateInterface $form_state) {
  91. $this->HeartbeatStorage->deleteRevision($this->revision->getRevisionId());
  92. $this->logger('content')->notice('Heartbeat: deleted %title revision %revision.', array('%title' => $this->revision->label(), '%revision' => $this->revision->getRevisionId()));
  93. drupal_set_message(t('Revision from %revision-date of Heartbeat %title has been deleted.', array('%revision-date' => format_date($this->revision->getRevisionCreationTime()), '%title' => $this->revision->label())));
  94. $form_state->setRedirect(
  95. 'entity.heartbeat.canonical',
  96. array('heartbeat' => $this->revision->id())
  97. );
  98. if ($this->connection->query('SELECT COUNT(DISTINCT vid) FROM {heartbeat_field_revision} WHERE id = :id', array(':id' => $this->revision->id()))->fetchField() > 1) {
  99. $form_state->setRedirect(
  100. 'entity.heartbeat.version_history',
  101. array('heartbeat' => $this->revision->id())
  102. );
  103. }
  104. }
  105. }