You are here

public function LocationInputManager::getOptionsForm in Geolocation Field 8.3

Same name and namespace in other branches
  1. 8.2 src/LocationInputManager.php \Drupal\geolocation\LocationInputManager::getOptionsForm()

Get form render array.

Parameters

array $settings: Settings.

mixed $context: Optional context.

Return value

array Form.

File

src/LocationInputManager.php, line 76

Class

LocationInputManager
Search plugin manager.

Namespace

Drupal\geolocation

Code

public function getOptionsForm(array $settings, $context = NULL) {
  $form = [
    '#type' => 'table',
    '#prefix' => $this
      ->t('<h3>Location input</h3>Each option will, if it can be applied, supersede any following option.'),
    '#header' => [
      [
        'data' => $this
          ->t('Enable'),
        'colspan' => 2,
      ],
      $this
        ->t('Option'),
      $this
        ->t('Settings'),
      $this
        ->t('Weight'),
    ],
    '#tabledrag' => [
      [
        'action' => 'order',
        'relationship' => 'sibling',
        'group' => 'geolocation-centre-option-weight',
      ],
    ],
  ];
  foreach ($this
    ->getDefinitions() as $location_input_id => $location_input_definition) {

    /** @var \Drupal\geolocation\LocationInputInterface $location_input */
    $location_input = $this
      ->createInstance($location_input_id);
    foreach ($location_input
      ->getAvailableLocationInputOptions($context) as $option_id => $label) {
      $option_enable_id = HTML::getUniqueId($option_id . '_enabled');
      $weight = isset($settings[$option_id]['weight']) ? $settings[$option_id]['weight'] : 0;
      $form[$option_id] = [
        '#weight' => $weight,
        '#attributes' => [
          'class' => [
            'draggable',
          ],
        ],
        'enable' => [
          '#attributes' => [
            'id' => $option_enable_id,
          ],
          '#type' => 'checkbox',
          '#default_value' => isset($settings[$option_id]['enable']) ? $settings[$option_id]['enable'] : FALSE,
        ],
        'location_input_id' => [
          '#type' => 'value',
          '#value' => $location_input_id,
        ],
        'option' => [
          '#markup' => $label,
        ],
        'settings' => [
          '#markup' => '',
        ],
        'weight' => [
          '#type' => 'weight',
          '#title' => $this
            ->t('Weight for @option', [
            '@option' => $label,
          ]),
          '#title_display' => 'invisible',
          '#size' => 4,
          '#default_value' => $weight,
          '#attributes' => [
            'class' => [
              'geolocation-centre-option-weight',
            ],
          ],
        ],
      ];
      $location_input_settings = [];
      if (!empty($settings[$option_id]['settings'])) {
        $location_input_settings = $settings[$option_id]['settings'];
      }
      $option_form = $location_input
        ->getSettingsForm($option_id, $location_input
        ->getSettings($location_input_settings), $context);
      if (!empty($option_form)) {
        $option_form['#states'] = [
          'visible' => [
            ':input[id="' . $option_enable_id . '"]' => [
              'checked' => TRUE,
            ],
          ],
        ];
        $option_form['#type'] = 'item';
        $form[$option_id]['settings'] = $option_form;
      }
    }
  }
  uasort($form, [
    SortArray::class,
    'sortByWeightProperty',
  ]);
  return $form;
}