You are here

public function FieldDeleteForm::getQuestion in Display Suite 8.4

Same name and namespace in other branches
  1. 8.2 src/Form/FieldDeleteForm.php \Drupal\ds\Form\FieldDeleteForm::getQuestion()
  2. 8.3 src/Form/FieldDeleteForm.php \Drupal\ds\Form\FieldDeleteForm::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

src/Form/FieldDeleteForm.php, line 56

Class

FieldDeleteForm
Provides a form to delete a DS field.

Namespace

Drupal\ds\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to delete @field ?', [
    '@field' => $this->field['label'],
  ]);
}