Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Form/ConfirmFormBase.php \Drupal\Core\Form\ConfirmFormBase::getCancelText()
  2. 9 core/lib/Drupal/Core/Form/ConfirmFormBase.php \Drupal\Core\Form\ConfirmFormBase::getCancelText()

Returns a caption for the link which cancels the action.

Return value

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

Overrides ConfirmFormInterface::getCancelText

2 methods override ConfirmFormBase::getCancelText()
ConfirmFormTestForm::getCancelText in core/modules/system/tests/modules/form_test/src/ConfirmFormTestForm.php
Returns a caption for the link which cancels the action.
ReindexConfirm::getCancelText in core/modules/search/src/Form/ReindexConfirm.php
Returns a caption for the link which cancels the action.

File

core/lib/Drupal/Core/Form/ConfirmFormBase.php, line 27

Class

ConfirmFormBase
Provides a generic base class for a confirmation form.

Namespace

Drupal\Core\Form

Code

public function getCancelText() {
  return $this
    ->t('Cancel');
}