You are here

public function ServiceResourceDeleteForm::getQuestion in Services 8.4

Same name and namespace in other branches
  1. 9.0.x 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

ServiceResourceDeleteForm
Class \Drupal\services\Form\ServiceResourceDeleteForm.

Namespace

Drupal\services\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to delete "@label" configurations?', [
    '@label' => $this->entity
      ->label(),
  ]);
}