You are here

public function ConfirmAddForm::getConfirmText in Simplenews 8.2

Same name and namespace in other branches
  1. 8 src/Form/ConfirmAddForm.php \Drupal\simplenews\Form\ConfirmAddForm::getConfirmText()
  2. 3.x src/Form/ConfirmAddForm.php \Drupal\simplenews\Form\ConfirmAddForm::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/ConfirmAddForm.php, line 25

Class

ConfirmAddForm
Implements a add confirmation form for simplenews subscriptions.

Namespace

Drupal\simplenews\Form

Code

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