d84e34a17f9fc187ccf89c0a52eb3f4719180564
[yaffs-website] / web / modules / contrib / media_entity / src / Form / MediaDeleteForm.php
1 <?php
2
3 namespace Drupal\media_entity\Form;
4
5 use Drupal\Core\Entity\ContentEntityDeleteForm;
6 use Drupal\Core\Url;
7
8 /**
9  * Provides a form for deleting a media.
10  */
11 class MediaDeleteForm extends ContentEntityDeleteForm {
12
13   /**
14    * {@inheritdoc}
15    */
16   public function getCancelUrl() {
17     return Url::fromUri('internal:/');
18   }
19
20 }