SubscriberSettingsForm.php in Simplenews 3.x
File
src/Form/SubscriberSettingsForm.php
View source
<?php
namespace Drupal\simplenews\Form;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
class SubscriberSettingsForm extends ConfigFormBase {
public function getFormId() {
return 'simplenews_admin_settings_subscriber';
}
protected function getEditableConfigNames() {
return [
'simplenews.settings',
];
}
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);
}
public function submitForm(array &$form, FormStateInterface $form_state) {
$this
->config('simplenews.settings')
->set('subscriber.sync_fields', $form_state
->getValue('simplenews_sync_fields'))
->save();
parent::submitForm($form, $form_state);
}
}