menu_move_topic

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 "menu_move_topic".
... in dropdown.naml
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
<macro name="menu_move_topic" requires="node">
    <n.if.is_in_command name="dropdown">
        <then>
            dropdown.add('moveTopic', '<n.javascript_string_encode.move_post_link text="[t]Move topic[/t]"/>', 'display:none');
        </then>
        <else>
            <n.set_local_node.this_node/>
            <n.if.visitor.can_move.local_node>
                <then>
                    NabbleDropdown.show('moveTopic');
                </then>
            </n.if.visitor.can_move.local_node>
        </else>
    </n.if.is_in_command>
</macro>