public function OAuthDeleteConsumerForm::getQuestion in OAuth 1.0 8
Same name and namespace in other branches
- 8.2 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 59 - Contains \Drupal\oauth\Form\OAuthDeleteConsumerForm.
Class
- OAuthDeleteConsumerForm
- Provides an oauth_consumer deletion confirmation form.
Namespace
Drupal\oauth\FormCode
public function getQuestion() {
return $this
->t('Are you sure you want to delete this OAuth consumer?');
}