You are here

public function ScopeDeleteConfirmForm::getQuestion in OAuth2 Server 8

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

Class

ScopeDeleteConfirmForm
Class Scope 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 scope %name?', [
    '%name' => $this->entity
      ->label(),
  ]);
}