protected function FeedDelete::getQuestion

Returns the question to ask the user.

Return value

string The form question. The page title will be set to this value.

Overrides ConfirmFormBase::getQuestion

File

drupal/core/modules/aggregator/lib/Drupal/aggregator/Form/FeedDelete.php, line 35
Contains \Drupal\aggregator\Form\FeedDelete.

Class

FeedDelete
Provides a form for deleting a feed.

Namespace

Drupal\aggregator\Form

Code

protected function getQuestion() {
  return t('Are you sure you want to delete the feed %feed?', array(
    '%feed' => $this->feed
      ->label(),
  ));
}