menu_sysadmin_options

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_sysadmin_options".
... in dropdown.naml
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
<macro name="menu_sysadmin_options" requires="node">
    <n.if.is_in_command name="dropdown">
        <then>
            dropdown.add('openShell', null, 'display:none');
        </then>
        <else>
            <n.set_local_node.this_node/>
            <n.if.visitor.is_sysadmin>
                <then>
                    NabbleDropdown.addContents('openShell','<n.javascript_string_encode.local_node.shell_link/>');
                </then>
            </n.if.visitor.is_sysadmin>
        </else>
    </n.if.is_in_command>
</macro>