learnosity-1.0.x-dev/src/Form/LearnosityActivityRevisionDeleteForm.php
src/Form/LearnosityActivityRevisionDeleteForm.php
<?php
namespace Drupal\learnosity\Form;
use Drupal\Core\Database\Connection;
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 Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Provides a form for deleting an Activity revision.
*
* @ingroup learnosity
*/
class LearnosityActivityRevisionDeleteForm extends ConfirmFormBase {
/**
* The Activity revision.
*
* @var \Drupal\learnosity\Entity\LearnosityActivityInterface
*/
protected $revision;
/**
* The Entity storage.
*
* @var \Drupal\Core\Entity\EntityStorageInterface
*/
protected $entityStorage;
/**
* The date formatter service.
*
* @var \Drupal\Core\Datetime\DateFormatterInterface
*/
protected $dateFormatter;
/**
* The database connection.
*
* @var \Drupal\Core\Database\Connection
*/
protected $connection;
/**
* LearnosityActivityRevisionDeleteForm constructor.
*
* @param \Drupal\Core\Entity\EntityStorageInterface $entity_storage
* The entity storage.
* @param \Drupal\Core\Datetime\DateFormatterInterface $date_formatter
* The date formatter service.
* @param \Drupal\Core\Database\Connection $connection
* The database connection.
*/
public function __construct(EntityStorageInterface $entity_storage, DateFormatterInterface $date_formatter, Connection $connection) {
$this->entityStorage = $entity_storage;
$this->dateFormatter = $date_formatter;
$this->connection = $connection;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
$entity_manager = $container->get('entity.manager');
return new static(
$entity_manager->getStorage('learnosity_activity'),
$container->get('date.formatter'),
$container->get('database')
);
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'learnosity_activity_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.learnosity_activity.version_history', [
'learnosity_activity' => $this->revision->id(),
]);
}
/**
* {@inheritdoc}
*/
public function getConfirmText() {
return $this->t('Delete');
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state, $learnosity_activity_revision = NULL) {
$this->revision = $this->entityStorage->loadRevision($learnosity_activity_revision);
$form = parent::buildForm($form, $form_state);
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->entityStorage->deleteRevision($this->revision->getRevisionId());
$this->logger('content')->notice('Activity: deleted %title revision %revision.', [
'%title' => $this->revision->label(),
'%revision' => $this->revision->getRevisionId(),
]);
\Drupal::messenger()->addMessage($this->t('Revision from %revision-date of Activity %title has been deleted.', [
'%revision-date' => $this->dateFormatter->format($this->revision->getRevisionCreationTime()),
'%title' => $this->revision->label(),
]));
$form_state->setRedirect(
'entity.learnosity_activity.canonical',
['learnosity_activity' => $this->revision->id()]
);
if ($this->connection->query('SELECT COUNT(DISTINCT vid) FROM {learnosity_activity_field_revision} WHERE id = :id', [':id' => $this->revision->id()])->fetchField() > 1) {
$form_state->setRedirect(
'entity.learnosity_activity.version_history',
['learnosity_activity' => $this->revision->id()]
);
}
}
}
