You are here

public function AppApiKeyRevokeFormBase::getConfirmText in Apigee Edge 8

Returns a caption for the button that confirms the action.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form confirmation text.

Overrides ConfirmFormBase::getConfirmText

File

src/Form/AppApiKeyRevokeFormBase.php, line 43

Class

AppApiKeyRevokeFormBase
Provides revoke confirmation base form for app API key.

Namespace

Drupal\apigee_edge\Form

Code

public function getConfirmText() {
  return $this
    ->t('Revoke');
}