You are here

FeedDeleteForm.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/modules/aggregator/src/Form/FeedDeleteForm.php

File

core/modules/aggregator/src/Form/FeedDeleteForm.php
View source
<?php

namespace Drupal\aggregator\Form;

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

/**
 * Provides a form for deleting a feed.
 *
 * @internal
 */
class FeedDeleteForm extends ContentEntityDeleteForm {

  /**
   * {@inheritdoc}
   */
  public function getCancelUrl() {
    return new Url('aggregator.admin_overview');
  }

  /**
   * {@inheritdoc}
   */
  protected function getRedirectUrl() {
    return $this
      ->getCancelUrl();
  }

  /**
   * {@inheritdoc}
   */
  protected function getDeletionMessage() {
    return $this
      ->t('The feed %label has been deleted.', [
      '%label' => $this->entity
        ->label(),
    ]);
  }

}

Classes

Namesort descending Description
FeedDeleteForm Provides a form for deleting a feed.