You are here

FeedDeleteForm.php in Zircon Profile 8

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

File

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

/**
 * @file
 * Contains \Drupal\aggregator\Form\FeedDeleteForm.
 */
namespace Drupal\aggregator\Form;

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

/**
 * Provides a form for deleting a feed.
 */
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.', array(
      '%label' => $this->entity
        ->label(),
    ));
  }

}

Classes

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