public function AppApiKeyDeleteFormBase::getQuestion in Apigee Edge 8
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/ AppApiKeyDeleteFormBase.php, line 33
Class
- AppApiKeyDeleteFormBase
- Provides delete confirmation base form for app API key.
Namespace
Drupal\apigee_edge\FormCode
public function getQuestion() {
return $this
->t('Are you sure that you want to delete the API key %key?', [
'%key' => $this->consumerKey,
]);
}