1 color.module color_scheme_form_validate($form, &$form_state)

Form validation handler for color_scheme_form().

See also

color_scheme_form_submit()

File

core/modules/color/color.module, line 489
Allows users to change the color scheme of themes.

Code

function color_scheme_form_validate($form, &$form_state) {
  // Only accept hexadecimal CSS color strings to avoid XSS upon use.
  foreach ($form_state['values']['palette'] as $key => $color) {
    if (!color_valid_hexadecimal_string($color)) {
      form_set_error('palette][' . $key, t('You must enter a valid hexadecimal color value for %name.', array('%name' => $form['color']['palette'][$key]['#title'])));
    }
  }
}