function color_scheme_form_validate
Same name in other branches
- 7.x modules/color/color.module \color_scheme_form_validate()
- 8.9.x core/modules/color/color.module \color_scheme_form_validate()
Form validation handler for color_scheme_form().
See also
1 string reference to 'color_scheme_form_validate'
- color_form_system_theme_settings_alter in core/
modules/ color/ color.module - Implements hook_form_FORM_ID_alter().
File
-
core/
modules/ color/ color.module, line 351
Code
function color_scheme_form_validate($form, FormStateInterface $form_state) {
// Only accept hexadecimal CSS color strings to avoid XSS upon use.
foreach ($form_state->getValue('palette') as $key => $color) {
if (!color_valid_hexadecimal_string($color)) {
$form_state->setErrorByName('palette][' . $key, t('You must enter a valid hexadecimal color value for %name.', [
'%name' => $form['color']['palette'][$key]['#title'],
]));
}
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.