You are here

BlockDeleteForm.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/block/src/Form/BlockDeleteForm.php

Namespace

Drupal\block\Form

File

core/modules/block/src/Form/BlockDeleteForm.php
View source
<?php

/**
 * @file
 * Contains \Drupal\block\Form\BlockDeleteForm.
 */
namespace Drupal\block\Form;

use Drupal\Core\Entity\EntityDeleteForm;
use Drupal\Core\Url;

/**
 * Provides a deletion confirmation form for the block instance deletion form.
 */
class BlockDeleteForm extends EntityDeleteForm {

  /**
   * {@inheritdoc}
   */
  public function getCancelUrl() {
    return new Url('block.admin_display');
  }

}

Classes

Namesort descending Description
BlockDeleteForm Provides a deletion confirmation form for the block instance deletion form.