memory_limit_policy-8.x-1.2/src/Form/MemoryLimitPolicyDeleteForm.php
src/Form/MemoryLimitPolicyDeleteForm.php
<?php namespace Drupal\memory_limit_policy\Form; use Drupal\Core\Entity\EntityConfirmFormBase; use Drupal\Core\Form\FormStateInterface; use Drupal\Core\Url; use Drupal\Core\Messenger\MessengerInterface; use Symfony\Component\DependencyInjection\ContainerInterface; /** * Form to delete policies. */ class MemoryLimitPolicyDeleteForm extends EntityConfirmFormBase { /** * @var \Drupal\Core\Messenger\MessengerInterface */ protected $messenger; /** * Class constructor. */ public function __construct(MessengerInterface $messenger) { $this->messenger = $messenger; } /** * {@inheritdoc} */ public static function create(ContainerInterface $container) { return new static( $container->get('messenger') ); } /** * {@inheritdoc} */ public function getQuestion() { return $this->t('Are you sure you want to delete the %policy policy?', ['%policy' => $this->entity->label()]); } /** * {@inheritdoc} */ public function getCancelUrl() { return new Url('entity.memory_limit_policy.collection'); } /** * {@inheritdoc} */ public function getConfirmText() { return $this->t('Delete'); } /** * {@inheritdoc} */ public function submitForm(array &$form, FormStateInterface $form_state) { $this->entity->delete(); $this->messenger->addMessage( $this->t('The @label policy has been deleted.', [ '@type' => $this->entity->bundle(), '@label' => $this->entity->label(), ] ) ); $form_state->setRedirectUrl($this->getCancelUrl()); } }