function twig_show

Wrapper around show() that does not return the content.

See also

show

1 string reference to 'twig_show'
TwigExtension::getFunctions in drupal/core/lib/Drupal/Core/Template/TwigExtension.php

File

drupal/core/themes/engines/twig/twig.engine, line 151
Handles integration of Twig templates with the Drupal theme system.

Code

function twig_show($element) {
  if ($element instanceof TwigReference) {
    $element =& $element
      ->getReference();
    show($element);
  }

  // @todo Add warning in else case
}