You are here

public function OpenlayersInteractionDeleteForm::getQuestion in Openlayers 8.4

Gathers a confirmation question.

The question is used as a title in our confirm form. For delete confirm forms, this typically takes the form of "Are you sure you want to delete...", including the entity label.

Return value

string Translated string.

Overrides ConfirmFormInterface::getQuestion

File

src/Form/OpenlayersInteractionDeleteForm.php, line 24

Class

OpenlayersInteractionDeleteForm
Class OpenlayersInteractionDeleteForm.

Namespace

Drupal\openlayers\Form

Code

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