function theme_ife_form_element in Inline Form Errors 7
Same name and namespace in other branches
- 7.2 ife.theme.inc \theme_ife_form_element()
Theme the form element, add the error, when one occured.
File
- ./
ife.theme.inc, line 49 - Theme functions
Code
function theme_ife_form_element($variables) {
$output = $variables['element']['#children'];
if (isset($_SESSION['ife'][$variables['element']['#id']])) {
$output .= '<div class="messages error messages-inline">' . $_SESSION['ife'][$variables['element']['#id']] . '</div>';
unset($_SESSION['ife'][$variables['element']['#id']]);
}
return $output;
}