You are here

public function DefaultField::getSettingsForm in Geocoder 8.2

Same name and namespace in other branches
  1. 8.3 modules/geocoder_field/src/Plugin/Geocoder/Field/DefaultField.php \Drupal\geocoder_field\Plugin\Geocoder\Field\DefaultField::getSettingsForm()

Provides the third party field settings subform.

The returned form API element will be added in behalf of 'geocoder_field' module as third party settings to the field that is storing the geocoding result.

Parameters

\Drupal\Core\Field\FieldConfigInterface $field: The field config.

array $form: The form API form array.

\Drupal\Core\Form\FormStateInterface $form_state: The form state object.

Return value

array A form API form.

Overrides GeocoderFieldPluginInterface::getSettingsForm

2 calls to DefaultField::getSettingsForm()
AddressField::getSettingsForm in modules/geocoder_address/src/Plugin/Geocoder/Field/AddressField.php
Provides the third party field settings subform.
GeofieldField::getSettingsForm in modules/geocoder_geofield/src/Plugin/Geocoder/Field/GeofieldField.php
Provides the third party field settings subform.
2 methods override DefaultField::getSettingsForm()
AddressField::getSettingsForm in modules/geocoder_address/src/Plugin/Geocoder/Field/AddressField.php
Provides the third party field settings subform.
GeofieldField::getSettingsForm in modules/geocoder_geofield/src/Plugin/Geocoder/Field/GeofieldField.php
Provides the third party field settings subform.

File

modules/geocoder_field/src/Plugin/Geocoder/Field/DefaultField.php, line 167

Class

DefaultField
Provides a default generic geocoder field plugin.

Namespace

Drupal\geocoder_field\Plugin\Geocoder\Field

Code

public function getSettingsForm(FieldConfigInterface $field, array $form, FormStateInterface &$form_state) {
  $geocoder_settings_link = $this->link
    ->generate(t('Edit options in the Geocoder configuration page</span>'), Url::fromRoute('geocoder.settings', [], [
    'query' => [
      'destination' => Url::fromRoute('<current>')
        ->toString(),
    ],
  ]));
  $element = [
    '#type' => 'details',
    '#title' => t('Geocode'),
    '#open' => TRUE,
  ];
  if ($this->config
    ->get('geocoder_presave_disabled')) {
    $element['#description'] = [
      '#type' => 'html_tag',
      '#tag' => 'div',
      '#value' => $this
        ->t("<b>The Geocoder and Reverse Geocoding operations are disabled, and won't be processed.</b> (@geocoder_settings_link)", [
        '@geocoder_settings_link' => $geocoder_settings_link,
      ]),
    ];
    $element['#open'] = FALSE;
  }

  // Attach Geofield Map Library.
  $element['#attached']['library'] = [
    'geocoder/general',
  ];
  $geocoder_field_unselected_condition = [
    ':input[name="third_party_settings[geocoder_field][method]"]' => [
      'value' => 'none',
    ],
  ];
  $basic_invisible_state_condition = [
    'invisible' => $geocoder_field_unselected_condition,
  ];
  $element['method'] = [
    '#type' => 'radios',
    '#title' => $this
      ->t('Geocode method'),
    '#options' => [
      'none' => $this
        ->t('No geocoding'),
      'source' => $this
        ->t('<b>Geocode</b> from an existing field'),
    ],
    '#default_value' => $field
      ->getThirdPartySetting('geocoder_field', 'method', 'none'),
  ];
  $element['weight'] = [
    '#type' => 'number',
    '#title' => $this
      ->t('Weight'),
    '#description' => $this
      ->t('This is the weight order that will be followed for Geocode/Reverse Geocode operations on multiple fields of this entity. Lowest weights will be processed first.'),
    '#default_value' => $field
      ->getThirdPartySetting('geocoder_field', 'weight', 0),
    '#min' => 0,
    '#max' => 9,
    '#size' => 2,
    '#states' => $basic_invisible_state_condition,
  ];

  // Set a default empty value for geocode_field.
  $element['geocode_field'] = [
    '#type' => 'value',
    '#value' => '',
  ];

  // Set a default empty value for reverse_geocode_field.
  $element['reverse_geocode_field'] = [
    '#type' => 'value',
    '#value' => '',
  ];

  // Get the field options for geocode and reverse geocode source fields.
  $geocode_source_fields_options = $this->fieldPluginManager
    ->getGeocodeSourceFields($field
    ->getTargetEntityTypeId(), $field
    ->getTargetBundle(), $field
    ->getName());
  $reverse_geocode_source_fields_options = $this->fieldPluginManager
    ->getReverseGeocodeSourceFields($field
    ->getTargetEntityTypeId(), $field
    ->getTargetBundle(), $field
    ->getName());

  // If there is at least one geocode source field defined from the entity,
  // extend the Form with Geocode Option.
  // (from Geofield) capabilities.
  if (!empty($geocode_source_fields_options)) {
    $element['geocode_field'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('Geocode from an existing field'),
      '#description' => $this
        ->t('Select which field you would like to use as Source Address field.'),
      '#default_value' => $field
        ->getThirdPartySetting('geocoder_field', 'geocode_field'),
      '#options' => $geocode_source_fields_options,
      '#states' => [
        'visible' => [
          ':input[name="third_party_settings[geocoder_field][method]"]' => [
            'value' => 'source',
          ],
        ],
      ],
    ];
  }

  // If the Geocoder Geofield Module exists and there is at least one
  // geofield defined from the entity, extend the Form with Reverse Geocode
  // (from Geofield) capabilities.
  if ($this->moduleHandler
    ->moduleExists('geocoder_geofield') && !empty($reverse_geocode_source_fields_options)) {

    // Add the Option to Reverse Geocode.
    $element['method']['#options']['destination'] = $this
      ->t('<b>Reverse Geocode</b> from a Geofield type existing field');

    // Add the Element to select the Reverse Geocode field.
    $element['reverse_geocode_field'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('Reverse Geocode from an existing field'),
      '#description' => $this
        ->t('Select which field you would like to use as Geographic Source field.'),
      '#default_value' => $field
        ->getThirdPartySetting('geocoder_field', 'reverse_geocode_field'),
      '#options' => $reverse_geocode_source_fields_options,
      '#states' => [
        'visible' => [
          ':input[name="third_party_settings[geocoder_field][method]"]' => [
            'value' => 'destination',
          ],
        ],
      ],
    ];
  }
  $element['skip_not_empty_value'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('<b>Skip Geocode/Reverse Geocode</b> if target value is not empty'),
    '#description' => $this
      ->t('This allows to preserve existing value of the target field, and make the Geocoder/Reverse Geocoder work only for insert op'),
    '#default_value' => $field
      ->getThirdPartySetting('geocoder_field', 'skip_not_empty_value', FALSE),
    '#states' => [
      'invisible' => $geocoder_field_unselected_condition,
    ],
  ];
  $element['disabled'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('<strong>Disable</strong> this field in the Content Edit Form'),
    '#description' => $this
      ->t('If checked, the Field will be Disabled to the user in the edit form, </br>and totally managed by the Geocode/Reverse Geocode operation chosen'),
    '#default_value' => $field
      ->getThirdPartySetting('geocoder_field', 'disabled'),
    '#states' => [
      'invisible' => $geocoder_field_unselected_condition,
      'visible' => [
        ':input[name="third_party_settings[geocoder_field][hidden]"]' => [
          'checked' => FALSE,
        ],
      ],
    ],
  ];
  $element['hidden'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('<strong>Hide</strong> this field in the Content Edit Form'),
    '#description' => $this
      ->t('If checked, the Field will be Hidden to the user in the edit form, </br>and totally managed by the Geocode/Reverse Geocode operation chosen'),
    '#default_value' => $field
      ->getThirdPartySetting('geocoder_field', 'hidden'),
    '#states' => $basic_invisible_state_condition,
  ];

  // Get the enabled/selected plugins.
  $enabled_plugins = (array) $field
    ->getThirdPartySetting('geocoder_field', 'plugins');

  // Generates the Draggable Table of Selectable Geocoder Plugins.
  $element['plugins'] = $this->providerPluginManager
    ->providersPluginsTableList($enabled_plugins);
  $element['plugins']['#states'] = $basic_invisible_state_condition;
  $element['dumper'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Output format'),
    '#default_value' => $field
      ->getThirdPartySetting('geocoder_field', 'dumper', 'wkt'),
    '#options' => $this->dumperPluginManager
      ->getPluginsAsOptions(),
    '#description' => $this
      ->t('Set the output format of the value. Ex, for a geofield, the format must be set to WKT.'),
    '#states' => $basic_invisible_state_condition,
  ];
  $element['delta_handling'] = [
    '#type' => 'select',
    '#title' => $this
      ->t('Multi-value input handling'),
    '#description' => 'If the source field is a multi-value field, this is mapped 1-on-1 by default.
      That means that if you can add an unlimited amount of text fields, this also results in an
      unlimited amount of geocodes. However, if you have one field that contains multiple geocodes
      (like a file) you can select single-to-multiple to extract all geocodes from the first field.',
    '#default_value' => $field
      ->getThirdPartySetting('geocoder_field', 'delta_handling', 'default'),
    '#options' => [
      'default' => $this
        ->t('Match Multiples (default)'),
      's_to_m' => $this
        ->t('Single to Multiple'),
    ],
    '#states' => [
      'visible' => [
        [
          ':input[name="third_party_settings[geocoder_field][method]"]' => [
            'value' => 'source',
          ],
        ],
      ],
    ],
  ];
  $failure = (array) $field
    ->getThirdPartySetting('geocoder_field', 'failure') + [
    'handling' => 'preserve',
    'status_message' => TRUE,
    'log' => TRUE,
  ];
  $element['failure']['handling'] = [
    '#type' => 'radios',
    '#title' => $this
      ->t('What to store if geo-coding fails?'),
    '#description' => $this
      ->t('Is possible that the source field cannot be geo-coded. Choose what to store in this field in such case.'),
    '#options' => [
      'preserve' => $this
        ->t('Preserve the existing field value'),
      'empty' => $this
        ->t('Empty the field value'),
    ],
    '#default_value' => $failure['handling'],
    '#states' => $basic_invisible_state_condition,
  ];
  $element['failure']['status_message'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Show a status message warning in case of geo-coding failure.'),
    '#default_value' => $failure['status_message'],
    '#states' => $basic_invisible_state_condition,
  ];
  $element['failure']['log'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Log the geo-coding failure.'),
    '#default_value' => $failure['log'],
    '#states' => $basic_invisible_state_condition,
  ];
  return $element;
}