You are here

function openlayers_style_form_start in Openlayers 7.3

Style base config form handler.

1 string reference to 'openlayers_style_form_start'
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 73
CTools Export UI plugin definition for styles.

Code

function openlayers_style_form_start($form, &$form_state) {
  $class = new \Drupal\openlayers_ui\UI\OpenlayersStyles();
  $class
    ->init($form_state['plugin']);
  $class
    ->edit_form($form, $form_state);
  return $form;
}