Version 1
[yaffs-website] / web / core / modules / action / src / Form / ActionDeleteForm.php
1 <?php
2
3 namespace Drupal\action\Form;
4
5 use Drupal\Core\Entity\EntityDeleteForm;
6 use Drupal\Core\Url;
7
8 /**
9  * Builds a form to delete an action.
10  */
11 class ActionDeleteForm extends EntityDeleteForm {
12
13   /**
14    * {@inheritdoc}
15    */
16   public function getCancelUrl() {
17     return new Url('entity.action.collection');
18   }
19
20 }