public 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 59
Class
- DeleteForm
- Builds the form to delete a path alias.
Namespace
Drupal\path\Form
Code
1 2 3 | public function getQuestion() { return t( 'Are you sure you want to delete path alias %title?' , array ( '%title' => $this ->pathAlias[ 'alias' ])); } |
Please login to continue.