public function GeofieldProximityArgument::buildOptionsForm in Geofield 8
Provide a form to edit options for this plugin.
Overrides ArgumentPluginBase::buildOptionsForm
File
- src/
Plugin/ views/ argument/ GeofieldProximityArgument.php, line 147
Class
- GeofieldProximityArgument
- Argument handler for geofield proximity.
Namespace
Drupal\geofield\Plugin\views\argumentCode
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
$form['description']['#markup'] .= $this
->t('<br/><u>Proximity format should be in the following format: <strong>"40.73,-73.93<=5[unit]"</strong></u>, where the operator might be also: ><br>and [unit] should be one of the following key value:</u>@units_decodes.<br><u>Note:</u> Use dot (.) as decimal separator, and not comma (,), otherwise results won\'t be accurate.</strong>', [
'@units_decodes' => Markup::create($this
->unitsListMarkup()),
]);
}