function formdazzle_preprocess_form_element in Formdazzle! 2.x
Same name and namespace in other branches
- 8 formdazzle.module \formdazzle_preprocess_form_element()
Implements hook_preprocess_HOOK().
File
- ./
formdazzle.module, line 28 - The module that provides a set of utilities that make form theming easier.
Code
function formdazzle_preprocess_form_element(array &$variables) {
// The ['label']['#theme'] can't be altered until this function because it is
// unconditionally created in template_preprocess_form_element().
// @see template_preprocess_form_element()
Dazzler::preprocessFormElement($variables);
}