You are here

public function OAuthDeleteConsumerForm::getQuestion in OAuth 1.0 8.2

Same name and namespace in other branches
  1. 8 src/Form/OAuthDeleteConsumerForm.php \Drupal\oauth\Form\OAuthDeleteConsumerForm::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/OAuthDeleteConsumerForm.php, line 83
Contains \Drupal\oauth\Form\OAuthDeleteConsumerForm.

Class

OAuthDeleteConsumerForm
Provides an oauth_consumer deletion confirmation form.

Namespace

Drupal\oauth\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to delete this OAuth consumer?');
}