You are here

public function ConfirmMultiForm::buildForm in Simplenews 3.x

Same name and namespace in other branches
  1. 8.2 src/Form/ConfirmMultiForm.php \Drupal\simplenews\Form\ConfirmMultiForm::buildForm()
  2. 8 src/Form/ConfirmMultiForm.php \Drupal\simplenews\Form\ConfirmMultiForm::buildForm()

Form constructor.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The form structure.

Overrides ConfirmFormBase::buildForm

File

src/Form/ConfirmMultiForm.php, line 46

Class

ConfirmMultiForm
Implements a multi confirmation form for simplenews subscriptions.

Namespace

Drupal\simplenews\Form

Code

public function buildForm(array $form, FormStateInterface $form_state, SubscriberInterface $subscriber = NULL) {
  $form = parent::buildForm($form, $form_state);
  $form['question'] = [
    '#markup' => '<p>' . $this
      ->t('Are you sure you want to confirm your subscription for %user?', [
      '%user' => simplenews_mask_mail($subscriber
        ->getMail()),
    ]) . "<p>\n",
  ];
  $form['subscriber'] = [
    '#type' => 'value',
    '#value' => $subscriber,
  ];
  return $form;
}