Passing data to your hookables

Example
<div class="field">
{{ form_row(hookable_metadata.context.form.some_field) }}
</div><div class="field">
{% set context = hookable_metadata.context %}
{{ form_row(context.form.some_field) }}
</div><div class="field">
{% set context = get_hookable_context() %}
{{ form_row(context.form.some_field) }}
</div>Override behavior
Last updated
Was this helpful?
