public function ServerDisableConfirmForm::getQuestion in OAuth2 Server 8
Same name and namespace in other branches
- 2.0.x src/Form/ServerDisableConfirmForm.php \Drupal\oauth2_server\Form\ServerDisableConfirmForm::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/ ServerDisableConfirmForm.php, line 19
Class
- ServerDisableConfirmForm
- Class Server Disable Confirm Form.
Namespace
Drupal\oauth2_server\FormCode
public function getQuestion() {
return $this
->t('Are you sure you want to disable the OAuth2 server %name?', [
'%name' => $this->entity
->label(),
]);
}