function theme_text_format_wrapper

Returns HTML for a text format-enabled form element.

Parameters

array $variables: An associative array containing:

  • element: A render element containing #children and #description.

Related topics

File

drupal/core/modules/filter/filter.module, line 830
Framework for handling the filtering of content.

Code

function theme_text_format_wrapper($variables) {
  $element = $variables['element'];
  $output = '<div class="text-format-wrapper form-item">';
  $output .= $element['#children'];
  if (!empty($element['#description'])) {
    $output .= '<div class="description">' . $element['#description'] . '</div>';
  }
  $output .= "</div>\n";
  return $output;
}