You are here

private function AdminForm::defaultSettings in Webform CiviCRM Integration 8.5

Set defaults when visiting the civicrm tab for the first time

File

src/AdminForm.php, line 1478
Webform CiviCRM module's admin form.

Class

AdminForm
@file Webform CiviCRM module's admin form.

Namespace

Drupal\webform_civicrm

Code

private function defaultSettings() {
  return [
    'data' => [
      'contact' => [
        1 => [
          'contact' => [
            1 => [
              'contact_type' => 'individual',
              'contact_sub_type' => [],
            ],
          ],
        ],
      ],
      'reg_options' => [
        'validate' => 1,
      ],
    ],
    'confirm_subscription' => 1,
    'create_fieldsets' => 1,
    'new_contact_source' => '',
    'civicrm_1_contact_1_contact_first_name' => 'create_civicrm_webform_element',
    'civicrm_1_contact_1_contact_last_name' => 'create_civicrm_webform_element',
    'civicrm_1_contact_1_contact_existing' => 'create_civicrm_webform_element',
  ];
}