public function OAuthDeleteConsumerForm::getCancelText in OAuth 1.0 8
Same name and namespace in other branches
- 8.2 src/Form/OAuthDeleteConsumerForm.php \Drupal\oauth\Form\OAuthDeleteConsumerForm::getCancelText()
Returns a caption for the link which cancels the action.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The form cancellation text.
Overrides ConfirmFormBase::getCancelText
File
- src/
Form/ OAuthDeleteConsumerForm.php, line 87 - Contains \Drupal\oauth\Form\OAuthDeleteConsumerForm.
Class
- OAuthDeleteConsumerForm
- Provides an oauth_consumer deletion confirmation form.
Namespace
Drupal\oauth\FormCode
public function getCancelText() {
return $this
->t('Cancel');
}