public function SubscriberSettingsForm::buildForm in Simplenews 8.2
Same name and namespace in other branches
- 8 src/Form/SubscriberSettingsForm.php \Drupal\simplenews\Form\SubscriberSettingsForm::buildForm()
- 3.x src/Form/SubscriberSettingsForm.php \Drupal\simplenews\Form\SubscriberSettingsForm::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 ConfigFormBase::buildForm
File
- src/
Form/ SubscriberSettingsForm.php, line 30
Class
- SubscriberSettingsForm
- Configure simplenews newsletter settings.
Namespace
Drupal\simplenews\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this
->config('simplenews.settings');
$form['account'] = [
'#type' => 'fieldset',
'#title' => $this
->t('User account'),
'#collapsible' => FALSE,
];
$form['account']['simplenews_sync_fields'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Synchronize between account and subscriber fields'),
'#default_value' => $config
->get('subscriber.sync_fields'),
'#description' => $this
->t('<p>When checked fields that exist with identical name and type on subscriber and accounts will be synchronized.</p>'),
];
return parent::buildForm($form, $form_state);
}