' . check_plain($element['#title']) . '';
}
// Use #attributes to customize a wrapper
.
$attributes = '';
if (!empty($element['#attributes'])) {
$attributes = drupal_attributes($element['#attributes']);
}
// Render any child items.
if (!$element['#children']) {
$element['#children'] = drupal_render_children($element);
}
// Build simple output.
$output = "
{$title}{$element['#children']}
";
return $output;
}