public function DeleteFeedForm::getQuestion in Feed Import 8
Returns the question to ask the user.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The form question. The page title will be set to this value.
Overrides ConfirmFormInterface::getQuestion
File
- src/
Form/ DeleteFeedForm.php, line 36 - Contains \Drupal\feed_import\Form\DeleteFeedForm
Class
- DeleteFeedForm
- Builds the form to delete a feed.
Namespace
Drupal\feed_import\FormCode
public function getQuestion() {
return $this
->t('Are you sure you want to delete %feed?', array(
'%feed' => $this->feed->name,
));
}