1.20.x drupal.inc drupal_render_children(&$element, $children_keys = NULL)

Renders children of an element and concatenates them.

Deprecated

since 1.0.0

See also

backdrop_render_children()

Related topics

File

includes/drupal.inc, line 1251
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_render_children(&$element, $children_keys = NULL) {
  return backdrop_render_children($element, $children_keys);
}