By fabianx on
Change record status:
Published (View all published change records)
Introduced in branch:
twig_engine, front-end
Issue links:
Description:
The following functions have been removed from being available in twig:
- $functions = array('t', 'attributes', 'drupal_attributes', 'drupal_render', 'render', 'twig_render', 'hide', 'show', 'unset', 'count');
The following functions remain available:
* hide, show, render, unset, url (temporarily)
The following filters are available:
* t
Note: render will be called always automatically when a render object is passed via {{ data.renderarray }} like
{{ content.links }} => calls the equivalent of render($variables['content']['links']);
{{ content }} => calls the equivalent of render($variables['content']);
{{ }} == a print statement in twig
Impacts:
Themers