You are here

public function ConfirmRemovalForm::buildForm in Simplenews 3.x

Same name and namespace in other branches
  1. 8.2 src/Form/ConfirmRemovalForm.php \Drupal\simplenews\Form\ConfirmRemovalForm::buildForm()
  2. 8 src/Form/ConfirmRemovalForm.php \Drupal\simplenews\Form\ConfirmRemovalForm::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/ConfirmRemovalForm.php, line 53

Class

ConfirmRemovalForm
Implements a removal confirmation form for simplenews subscriptions.

Namespace

Drupal\simplenews\Form

Code

public function buildForm(array $form, FormStateInterface $form_state, $mail = '', NewsletterInterface $newsletter = NULL) {
  $form = parent::buildForm($form, $form_state);
  $form['question'] = [
    '#markup' => '<p>' . $this
      ->t('Are you sure you want to remove %user from the %newsletter mailing list?', [
      '%user' => simplenews_mask_mail($mail),
      '%newsletter' => $newsletter->name,
    ]) . "<p>\n",
  ];
  $form['mail'] = [
    '#type' => 'value',
    '#value' => $mail,
  ];
  $form['newsletter'] = [
    '#type' => 'value',
    '#value' => $newsletter,
  ];
  return $form;
}