You are here

function panels_style_settings_form_validate in Panels 6.2

Allows panel styles to validate their style settings.

File

includes/display-layout-settings.inc, line 370
Form and ajax handling for edit layout settings

Code

function panels_style_settings_form_validate($form, &$form_state) {
  $style = $form_state['style'];
  if ($function = panels_plugin_get_function('style', $style, 'settings form validate')) {
    $function($form, $form_state['values']['style_settings']);
  }
}