1 drupal.inc | drupal_render_collect_attached($elements, $return = FALSE) |
Collects #attached for an element and its children into a single array.
Deprecated
since 1.0.0
See also
backdrop_render_collect_attached()
Related topics
File
- core/
includes/ drupal.inc, line 1281 - Contains constants and function wrappers for Drupal 7.x compatibility.
Code
function drupal_render_collect_attached($elements, $return = FALSE) {
return backdrop_render_collect_attached($elements, $return);
}