MandrillActivityDeleteForm.php in Mandrill 8
Namespace
Drupal\mandrill_activity\FormFile
modules/mandrill_activity/src/Form/MandrillActivityDeleteForm.phpView source
<?php
/**
* @file
* Contains \Drupal\mandrill_activity\Form\MandrillActivityDeleteForm.
*/
namespace Drupal\mandrill_activity\Form;
use Drupal\Core\Entity\EntityConfirmFormBase;
use Drupal\Core\Url;
use Drupal\Core\Form\FormStateInterface;
/**
* Form controller for the MandrillActivity entity delete form.
*
* @ingroup mandrill_activity
*/
class MandrillActivityDeleteForm extends EntityConfirmFormBase {
/**
* {@inheritdoc}
*/
public function getQuestion() {
return $this
->t('Are you sure you want to delete %name?', array(
'%name' => $this->entity
->label(),
));
}
/**
* {@inheritdoc}
*/
public function getCancelUrl() {
return new Url('mandrill_activity.admin');
}
/**
* {@inheritdoc}
*/
public function getConfirmText() {
return $this
->t('Delete');
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->entity
->delete();
\Drupal::service('router.builder')
->setRebuildNeeded();
$this
->messenger()
->addStatus($this
->t('Mandrill Activity %label has been deleted.', array(
'%label' => $this->entity
->label(),
)));
$form_state
->setRedirectUrl($this
->getCancelUrl());
}
}
Classes
Name | Description |
---|---|
MandrillActivityDeleteForm | Form controller for the MandrillActivity entity delete form. |