You are here

public function BackupDeleteForm::getQuestion in Backup and Migrate 8.4

Same name and namespace in other branches
  1. 5.0.x src/Form/BackupDeleteForm.php \Drupal\backup_migrate\Form\BackupDeleteForm::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

src/Form/BackupDeleteForm.php, line 29

Class

BackupDeleteForm

Namespace

Drupal\backup_migrate\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to delete this backup?');
}