public function ConfirmRemovalForm::getConfirmText in Simplenews 8.2
Same name and namespace in other branches
- 8 src/Form/ConfirmRemovalForm.php \Drupal\simplenews\Form\ConfirmRemovalForm::getConfirmText()
- 3.x src/Form/ConfirmRemovalForm.php \Drupal\simplenews\Form\ConfirmRemovalForm::getConfirmText()
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/ ConfirmRemovalForm.php, line 25
Class
- ConfirmRemovalForm
- Implements a removal confirmation form for simplenews subscriptions.
Namespace
Drupal\simplenews\FormCode
public function getConfirmText() {
return $this
->t('Unsubscribe');
}