You are here

SlideGroupDeleteForm.php in Drupal Slider 8.2

Same filename and directory in other branches
  1. 8 src/Form/SlideGroupDeleteForm.php

File

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

namespace Drupal\drupal_slider\Form;

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

/**
 * Class SlideGroupDeleteForm.
 */
class SlideGroupDeleteForm extends EntityConfirmFormBase {

  /**
   * Function getQuestion.
   */
  public function getQuestion() {
    return $this
      ->t('Are you sure you want to delete slide group %label?', [
      '%label' => $this->entity
        ->label(),
    ]);
  }

  /**
   * Function getConfirmText.
   */
  public function getConfirmText() {
    return $this
      ->t('Delete Slide group');
  }

  /**
   * Function getCancelUrl.
   */
  public function getCancelUrl() {
    return new Url('entity.drupal_slider_slide_grouping.list');
  }

  /**
   * Function submitForm.
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {

    // Delete the entity.
    $this->entity
      ->delete();

    // Set a message that the entity was deleted.
    $this
      ->messenger()
      ->addMessage($this
      ->t('Slide group %label was deleted.', [
      '%label' => $this->entity
        ->label(),
    ]));

    // Redirect the user to the list controller when complete.
    $form_state
      ->setRedirectUrl($this
      ->getCancelUrl());
  }

}

Classes

Namesort descending Description
SlideGroupDeleteForm Class SlideGroupDeleteForm.