public function ServiceResourceDeleteForm::getQuestion in Services 9.0.x
Same name and namespace in other branches
- 8.4 src/Form/ServiceResourceDeleteForm.php \Drupal\services\Form\ServiceResourceDeleteForm::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/ ServiceResourceDeleteForm.php, line 17
Class
Namespace
Drupal\services\FormCode
public function getQuestion() {
return $this
->t('Are you sure you want to delete "@label" configurations?', [
'@label' => $this->entity
->label(),
]);
}