You are here

public function ServerDeleteConfirmForm::getQuestion in Search API 8

Overrides EntityDeleteFormTrait::getQuestion

File

src/Form/ServerDeleteConfirmForm.php, line 45

Class

ServerDeleteConfirmForm
Defines a confirm form for deleting a server.

Namespace

Drupal\search_api\Form

Code

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