Version 1
[yaffs-website] / web / core / modules / system / tests / modules / entity_test / src / EntityTestDeleteForm.php
1 <?php
2
3 namespace Drupal\entity_test;
4
5 use Drupal\Core\Entity\ContentEntityDeleteForm;
6 use Drupal\Core\Url;
7
8 /**
9  * Provides the entity_test delete form.
10  */
11 class EntityTestDeleteForm extends ContentEntityDeleteForm {
12
13   /**
14    * {@inheritdoc}
15    */
16   public function getCancelUrl() {
17     return new Url('<front>');
18   }
19
20 }