ElevateZoomPlusDeleteForm.php in ElevateZoom Plus 8
Namespace
Drupal\elevatezoomplus_ui\FormFile
modules/ui/src/Form/ElevateZoomPlusDeleteForm.phpView 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
Name | Description |
---|---|
ElevateZoomPlusDeleteForm | Builds the form to delete a ElevateZoomPlus optionset. |