You are here

MandrillTemplateMapDeleteForm.php in Mandrill 8

File

modules/mandrill_template/src/Form/MandrillTemplateMapDeleteForm.php
View source
<?php

/**
 * @file
 * Contains \Drupal\mandrill_template\Form\MandrillTemplateMapDeleteForm.
 */
namespace Drupal\mandrill_template\Form;

use Drupal\Core\Entity\EntityConfirmFormBase;
use Drupal\Core\Url;
use Drupal\Core\Form\FormStateInterface;

/**
 * Form controller for the MandrillTemplateMap entity delete form.
 *
 * @ingroup mandrill_template
 */
class MandrillTemplateMapDeleteForm 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_template.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 Template Map %label has been deleted.', array(
      '%label' => $this->entity
        ->label(),
    )));
    $form_state
      ->setRedirectUrl($this
      ->getCancelUrl());
  }

}

Classes

Namesort descending Description
MandrillTemplateMapDeleteForm Form controller for the MandrillTemplateMap entity delete form.