DeleteForm::getQuestion

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']));
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.