elevatezoomplus-8.x-1.x-dev/modules/ui/src/Form/ElevateZoomPlusDeleteForm.php
modules/ui/src/Form/ElevateZoomPlusDeleteForm.php
<?php
namespace Drupal\elevatezoomplus_ui\Form;
use Drupal\Core\Url;
use Drupal\blazy\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');
}
}
