You are here

function ctools_stylizer_edit_style_form_default_validate in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 includes/stylizer.inc \ctools_stylizer_edit_style_form_default_validate()

File

includes/stylizer.inc, line 1078
Create customized CSS and images from palettes created by user input.

Code

function ctools_stylizer_edit_style_form_default_validate($form, &$form_state) {
  if (!empty($form_state['owner info']['owner form validate']) && function_exists($form_state['owner info']['owner form validate'])) {
    $form_state['owner info']['owner form validate']($form, $form_state);
  }
  if (!empty($form_state['plugin']['settings form validate']) && function_exists($form_state['plugin']['settings form validate'])) {
    $form_state['plugin']['settings form validate']($form, $form_state);
  }
}