EventDeleteForm.php in Booking and Availability Management Tools for Drupal 8
File
modules/bat_event/src/Entity/Form/EventDeleteForm.php
View source
<?php
namespace Drupal\bat_event\Entity\Form;
use Drupal\Core\Entity\ContentEntityConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;
class EventDeleteForm extends ContentEntityConfirmFormBase {
public function getQuestion() {
return $this
->t('Are you sure you want to delete entity %name?', [
'%name' => $this->entity
->label(),
]);
}
public function getCancelUrl() {
return new Url('entity.bat_event.collection');
}
public function getConfirmText() {
return $this
->t('Delete');
}
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->entity
->delete();
$this
->messenger()
->addMessage($this
->t('The event has been deleted'));
$form_state
->setRedirectUrl($this
->getCancelUrl());
}
}