You are here

public function XmlSitemapCustomDeleteForm::getQuestion in XML sitemap 8

Same name and namespace in other branches
  1. 2.x xmlsitemap_custom/src/Form/XmlSitemapCustomDeleteForm.php \Drupal\xmlsitemap_custom\Form\XmlSitemapCustomDeleteForm::getQuestion()

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

xmlsitemap_custom/src/Form/XmlSitemapCustomDeleteForm.php, line 91

Class

XmlSitemapCustomDeleteForm
Provides a form for deleting a custom link.

Namespace

Drupal\xmlsitemap_custom\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to delete %link?', [
    '%link' => $this->custom_link['loc'],
  ]);
}