save_alert_field

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_alert_field".
... in save_alert_field.naml
1
2
3
4
5
6
<override_macro name="save_alert_field" requires="node,servlet">
    <n.if.null_to_true.alert_field.value>
        <then.topic_node.subscribe_visitor/>
        <else.topic_node.unsubscribe_visitor/>
    </n.if.null_to_true.alert_field.value>
</override_macro>
Overrides default macro
... in reply.naml
207
208
209
210
211
212
<macro name="save_alert_field" requires="node,servlet">
    <n.if.null_to_false.alert_field.value>
        <then.topic_node.subscribe_visitor/>
        <else.topic_node.unsubscribe_visitor/>
    </n.if.null_to_false.alert_field.value>
</macro>