function theme_fel_text_format_wrapper in Form element layout 7
Replacement theme for 'text_format'.
See also
File
- ./
fel.module, line 255 - Reorder #title, #description and #children in forms.
Code
function theme_fel_text_format_wrapper($variables) {
$element = $variables['element'];
$parts['children'] = $element['#children'];
if (!empty($element['#description'])) {
$parts['description'] = theme('fel_form_element_description', $variables);
}
$output = '<div class="text-format-wrapper">';
$output .= fel_order_output($element, $parts);
$output .= "</div>\n";
return $output;
}