Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 845 Bytes

ngbm_render_rule_target.rst

File metadata and controls

32 lines (19 loc) · 845 Bytes

ngbm_render_rule_target

This function is used to render a rule target:

{{ ngbm_render_rule_target(target) }}

This will render the provided target in the view context of the template from which you called the function or in the default view context if the calling template is not rendered by the Netgen Layouts view layer.

You can transfer a list of custom parameters to the function, which will be injected as variables into the target template:

{# my.html.twig #}

{{ ngbm_render_rule_target(target, {'the_answer': 42}) }}

{# target.html.twig #}

{{ the_answer }}

Finally, you can render the target with a view context different from the current one:

{{ ngbm_render_rule_target(target, {}, 'my_context') }}