function theme_render_example_add_div
Wraps a div around the already-rendered #children.
Related topics
File
-
render_example/
render_example.module, line 488
Code
function theme_render_example_add_div($variables) {
$element = $variables['element'];
$output = '<div class="render-example-wrapper-div">';
$output .= $element['#children'];
$output .= '</div>';
return $output;
}