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