public function SavedSearchDeleteConfirmForm::getQuestion in Search API Saved Searches 8
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/ SavedSearchDeleteConfirmForm.php, line 24
Class
- SavedSearchDeleteConfirmForm
- Provides a form for deleting a saved search.
Namespace
Drupal\search_api_saved_searches\FormCode
public function getQuestion() {
return $this
->t('Do you really want to delete this saved search?');
}