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