public function SettingsForm::buildForm in Geocoder 8.2
Same name and namespace in other branches
- 8.3 src/Form/SettingsForm.php \Drupal\geocoder\Form\SettingsForm::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/ SettingsForm.php, line 119
Class
- SettingsForm
- The geocoder settings form.
Namespace
Drupal\geocoder\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this
->config('geocoder.settings');
$geocoder_config_schema = $this->typedConfigManager
->getDefinition('geocoder.settings') + [
'mapping' => [],
];
$geocoder_config_schema = $geocoder_config_schema['mapping'];
// Attach Geofield Map Library.
$form['#attached']['library'] = [
'geocoder/general',
];
$form['geocoder_presave_disabled'] = [
'#type' => 'checkbox',
'#title' => $geocoder_config_schema['geocoder_presave_disabled']['label'],
'#description' => $geocoder_config_schema['geocoder_presave_disabled']['description'],
'#default_value' => $config
->get('geocoder_presave_disabled'),
];
$form['cache'] = [
'#type' => 'checkbox',
'#title' => $geocoder_config_schema['cache']['label'],
'#description' => $geocoder_config_schema['cache']['description'],
'#default_value' => $config
->get('cache'),
];
$geocoder_php_library_link = $this->link
->generate(t('Geocoder Php Library'), Url::fromUri('http://geocoder-php.org/Geocoder/#address-based-providers', [
'absolute' => TRUE,
'attributes' => [
'target' => 'blank',
],
]));
$form['geocoder_plugins_title'] = [
'#type' => 'item',
'#title' => t('Geocoder plugin(s) Options'),
'#description' => t('Set the Options to be used on your plugins. As a good help it is possible to refer to the requirements listed in the @geocoder_php_library_link documentation.', [
'@geocoder_php_library_link' => $geocoder_php_library_link,
]),
];
$form['plugins'] = [
'#type' => 'table',
'#weight' => 20,
'#header' => [
$this
->t('Geocoder plugins'),
$this
->t('Options / Arguments'),
],
'#attributes' => [
'class' => [
'geocode-plugins-list',
],
],
];
$rows = [];
foreach ($this->providerPluginManager
->getPlugins() as $plugin) {
$plugin_config_schema = [];
if ($this->typedConfigManager
->hasConfigSchema('geocoder.settings.plugins.' . $plugin['id'])) {
$plugin_config_schema = $this->typedConfigManager
->getDefinition('geocoder.settings.plugins.' . $plugin['id']);
$plugin_config_schema = isset($plugin_config_schema['mapping']) ? $plugin_config_schema['mapping'] : [];
}
$rows[$plugin['id']] = [
'name' => [
'#plain_text' => $plugin['name'],
],
];
foreach ($plugin_config_schema as $argument => $argument_type) {
$plugin_config_schema[$argument] += [
'label' => $plugin['id'],
'description' => NULL,
];
$plugin['arguments'] += [
$argument => $plugin['arguments'][$argument],
];
$plugin_config_schema += [
$argument => [
'label' => $argument,
'description' => NULL,
],
];
switch ($argument_type['type']) {
case 'boolean':
$type = 'checkbox';
break;
case 'string':
case 'color_hex':
case 'path':
case 'label':
$type = 'textfield';
break;
case 'text':
$type = 'textarea';
break;
case 'integer':
$type = 'number';
break;
default:
$type = 'textfield';
}
$rows[$plugin['id']]['options'][$argument] = [
'#type' => $type,
'#title' => $plugin_config_schema[$argument]['label'],
'#description' => $plugin_config_schema[$argument]['description'],
'#default_value' => $plugin['arguments'][$argument],
];
}
if (empty($rows[$plugin['id']]['options'])) {
$rows[$plugin['id']]['options'] = [
'#type' => 'value',
'#value' => [],
'notes' => [
'#type' => 'html_tag',
'#tag' => 'div',
'#value' => $this
->t("This plugin doesn't accept arguments."),
'#attributes' => [
'class' => [
'options-notes',
],
],
],
];
}
}
foreach ($rows as $plugin_id => $row) {
$form['plugins'][$plugin_id] = $row;
}
return parent::buildForm($form, $form_state);
}