EventTypeDeleteForm.php in RNG - Events and Registrations 8
Same filename and directory in other branches
Namespace
Drupal\rng\FormFile
src/Form/EventTypeDeleteForm.phpView source
<?php
namespace Drupal\rng\Form;
use Drupal\Core\Entity\EntityConfirmFormBase;
use Drupal\Core\Url;
use Drupal\Core\Form\FormStateInterface;
use Drupal\field\Entity\FieldConfig;
/**
* Form controller to delete event configs.
*/
class EventTypeDeleteForm extends EntityConfirmFormBase {
/**
* {@inheritdoc}
*/
public function getQuestion() {
return $this
->t('Are you sure you want to delete event type %label?', array(
'%label' => $this->entity
->label(),
));
}
/**
* {@inheritdoc}
*/
public function getConfirmText() {
return $this
->t('Delete');
}
/**
* {@inheritdoc}
*/
public function getCancelUrl() {
return new Url('rng.event_type.overview');
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->entity
->delete();
drupal_set_message(t('Event type %label was deleted.', array(
'%label' => $this->entity
->label(),
)));
$form_state
->setRedirectUrl($this
->getCancelUrl());
}
}
Classes
Name | Description |
---|---|
EventTypeDeleteForm | Form controller to delete event configs. |