You are here

public function UserCancelForm::getConfirmText in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/user/src/Form/UserCancelForm.php \Drupal\user\Form\UserCancelForm::getConfirmText()

Returns a caption for the button that confirms the action.

Return value

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

Overrides ContentEntityConfirmFormBase::getConfirmText

File

core/modules/user/src/Form/UserCancelForm.php, line 78

Class

UserCancelForm
Provides a confirmation form for cancelling user account.

Namespace

Drupal\user\Form

Code

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