public function DeleteForm::getQuestion in Zircon Profile 8.0
Same name in this branch
- 8.0 core/modules/path/src/Form/DeleteForm.php \Drupal\path\Form\DeleteForm::getQuestion()
- 8.0 core/modules/forum/src/Form/DeleteForm.php \Drupal\forum\Form\DeleteForm::getQuestion()
Same name and namespace in other branches
- 8 core/modules/path/src/Form/DeleteForm.php \Drupal\path\Form\DeleteForm::getQuestion()
Returns the question to ask the user.
Return value
string The form question. The page title will be set to this value.
Overrides ConfirmFormInterface::getQuestion
File
- core/
modules/ path/ src/ Form/ DeleteForm.php, line 64 - Contains \Drupal\path\Form\DeleteForm.
Class
- DeleteForm
- Builds the form to delete a path alias.
Namespace
Drupal\path\FormCode
public function getQuestion() {
return t('Are you sure you want to delete path alias %title?', array(
'%title' => $this->pathAlias['alias'],
));
}