You are here

MediaDeleteForm.php in Media entity 8

File

src/Form/MediaDeleteForm.php
View source
<?php

namespace Drupal\media_entity\Form;

use Drupal\Core\Entity\ContentEntityDeleteForm;
use Drupal\Core\Url;

/**
 * Provides a form for deleting a media.
 */
class MediaDeleteForm extends ContentEntityDeleteForm {

  /**
   * {@inheritdoc}
   */
  public function getCancelUrl() {
    return Url::fromUri('internal:/');
  }

}

Classes

Namesort descending Description
MediaDeleteForm Provides a form for deleting a media.