You are here

public function ServerDeleteConfirmForm::getQuestion in OAuth2 Server 8

Same name and namespace in other branches
  1. 2.0.x src/Form/ServerDeleteConfirmForm.php \Drupal\oauth2_server\Form\ServerDeleteConfirmForm::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/ServerDeleteConfirmForm.php, line 19

Class

ServerDeleteConfirmForm
Class Server Delete Confirm Form.

Namespace

Drupal\oauth2_server\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to delete the OAuth2 server %name?', [
    '%name' => $this->entity
      ->label(),
  ]);
}