drupal_render(&$elements, $is_recursive_call = FALSE)
Renders HTML given a structured array tree.
Deprecated
as of Drupal 8.0.x, will be removed before Drupal 9.0.0. Use the 'renderer' service instead.
See also
\Drupal\Core\Render\RendererInterface::render()
File
- core/includes/common.inc, line 869
- Common functions that many Drupal modules will need to reference.
Code
1 2 3 | function drupal_render(& $elements , $is_recursive_call = FALSE) { return \Drupal::service( 'renderer' )->render( $elements , $is_recursive_call ); } |
Please login to continue.