You are here

function openlayers_style_form_start_validate in Openlayers 7.3

Style base config form validation handler.

File

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

Code

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