public function IndexDeleteForm::getQuestion in Elasticsearch Connector 8
Same name and namespace in other branches
- 8.7 src/Form/IndexDeleteForm.php \Drupal\elasticsearch_connector\Form\IndexDeleteForm::getQuestion()
- 8.2 src/Form/IndexDeleteForm.php \Drupal\elasticsearch_connector\Form\IndexDeleteForm::getQuestion()
- 8.5 src/Form/IndexDeleteForm.php \Drupal\elasticsearch_connector\Form\IndexDeleteForm::getQuestion()
- 8.6 src/Form/IndexDeleteForm.php \Drupal\elasticsearch_connector\Form\IndexDeleteForm::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/ IndexDeleteForm.php, line 23 - Contains \Drupal\elasticsearch_connector\Form\IndexDeleteForm.
Class
- IndexDeleteForm
- Defines a confirmation form for deletion of a custom menu.
Namespace
Drupal\elasticsearch_connector\FormCode
public function getQuestion() {
return t('Are you sure you want to delete the index %title?', array(
'%title' => $this->entity
->label(),
));
}