menu_unlock_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_unlock_topic".
... in dropdown.naml
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
<macro name="menu_unlock_topic" requires="node">
    <n.if.is_in_command name="dropdown">
        <then>
            dropdown.add('unlockTopic', '<n.javascript_string_encode.unlock_topic_link/>', 'display:none');
        </then>
        <else>
            <n.set_local_node.this_node/>
            <n.if.both condition1="[n.local_node.is_locked_topic/]" condition2="[n.visitor.can_manage_locked_topics_in.local_node/]">
                <then>
                    NabbleDropdown.show('unlockTopic');
                </then>
            </n.if.both>
        </else>
    </n.if.is_in_command>
</macro>