You are here

function openlayers_style_form_options in Openlayers 7.3

Style options config form handler.

1 string reference to 'openlayers_style_form_options'
openlayers_ui_OpenlayersStyles_ctools_export_ui in modules/openlayers_ui/src/Plugin/export_ui/OpenlayersStyles.inc
CTools Export UI plugin definition.

File

modules/openlayers_ui/src/Plugin/export_ui/OpenlayersStyles.inc, line 130
CTools Export UI plugin definition for styles.

Code

function openlayers_style_form_options($form, &$form_state) {
  if (($style = \Drupal\openlayers\Openlayers::load('Style', $form_state['item'])) == TRUE) {
    $style
      ->optionsForm($form, $form_state);
    $form['options']['#tree'] = TRUE;
  }
  return $form;
}