You are here

ElevateZoomPlusDeleteForm.php in ElevateZoom Plus 8

File

modules/ui/src/Form/ElevateZoomPlusDeleteForm.php
View source
<?php

namespace Drupal\elevatezoomplus_ui\Form;

use Drupal\Core\Url;
use Drupal\blazy_ui\Form\BlazyDeleteFormBase;

/**
 * Builds the form to delete a ElevateZoomPlus optionset.
 */
class ElevateZoomPlusDeleteForm extends BlazyDeleteFormBase {

  /**
   * Defines the nice anme.
   *
   * @var string
   */
  protected static $niceName = 'ElevateZoomPlus';

  /**
   * Defines machine name.
   *
   * @var string
   */
  protected static $machineName = 'elevatezoomplus';

  /**
   * {@inheritdoc}
   */
  public function getCancelUrl() {
    return new Url('entity.elevatezoomplus.collection');
  }

}

Classes

Namesort descending Description
ElevateZoomPlusDeleteForm Builds the form to delete a ElevateZoomPlus optionset.