public function UserCancelForm::getConfirmText in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/user/src/Form/UserCancelForm.php \Drupal\user\Form\UserCancelForm::getConfirmText()
Returns a caption for the button that confirms the action.
Return value
string The form confirmation text.
Overrides ContentEntityConfirmFormBase::getConfirmText
File
- core/
modules/ user/ src/ Form/ UserCancelForm.php, line 69 - Contains \Drupal\user\Form\UserCancelForm.
Class
- UserCancelForm
- Provides a confirmation form for cancelling user account.
Namespace
Drupal\user\FormCode
public function getConfirmText() {
return $this
->t('Cancel account');
}