save_field_values

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "save_field_values".
... in subscribe.naml
46
47
48
49
50
51
52
53
54
55
56
<macro name="save_field_values">
    <n.if.equal value1="save-subscription" value2="[n.action_parameter/]">
        <then>
            <n.page_node.visitor_subscription.save
                to="[n.subscription_to_field.value/]"
                type="[n.subscription_type_field.value/]"
            />
            <n.redirect_to.subscription_saved_url/>
        </then>
    </n.if.equal>
</macro>