You are here

WebformContentCreatorDeleteForm.php in Webform Content Creator 3.x

File

src/Form/WebformContentCreatorDeleteForm.php
View source
<?php

namespace Drupal\webform_content_creator\Form;

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

/**
 * Defines the Webform Content creator delete form.
 */
class WebformContentCreatorDeleteForm extends EntityConfirmFormBase {

  /**
   * Return the question shown when deleting a Webform content creator entity.
   *
   * @return mixed
   *   Message shown when deleting a Webform content creator entity.
   */
  public function getQuestion() {
    return $this
      ->t('Are you sure you want to delete %name?', [
      '%name' => $this->entity
        ->getTitle(),
    ]);
  }

  /**
   * Get url used when canceling an entity deletion.
   *
   * @return \Drupal\Core\Url
   *   Cancellation URL.
   */
  public function getCancelUrl() {
    return new Url('entity.webform_content_creator.collection');
  }

  /**
   * Get confirmation text.
   *
   * @return string
   *   Confirmation text.
   */
  public function getConfirmText() {
    return $this
      ->t('Delete');
  }

  /**
   * Get submission form when deleting a Webform content creator entity.
   *
   * @param array $form
   *   Form array.
   * @param \Drupal\Core\Form\FormStateInterface $form_state
   *   Form state values.
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $this->entity
      ->delete();
    $this
      ->messenger()
      ->addMessage($this
      ->t('Entity %label has been deleted.', [
      '%label' => $this->entity
        ->getTitle(),
    ]));
    $form_state
      ->setRedirectUrl($this
      ->getCancelUrl());
  }

}

Classes

Namesort descending Description
WebformContentCreatorDeleteForm Defines the Webform Content creator delete form.