Skip to content

Latest commit

 

History

History
36 lines (21 loc) · 1005 Bytes

nglayouts_render_policy_limitation.rst

File metadata and controls

36 lines (21 loc) · 1005 Bytes

nglayouts_render_policy_limitation

Note

Available only in Enterprise Edition

This function is used to render a policy limitation:

{{ nglayouts_render_policy_limitation(limitation) }}

This will render the provided policy limitation 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 policy limitation template:

{# my.html.twig #}

{{ nglayouts_render_policy_limitation(limitation, {'the_answer': 42}) }}

{# limitation.html.twig #}

{{ the_answer }}

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

{{ nglayouts_render_policy_limitation(limitation, {}, 'my_context') }}