menu_download_backup

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_download_backup".
... in dropdown.naml
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
<macro name="menu_download_backup" requires="node">
    <n.if.is_in_command name="dropdown">
        <then>
            dropdown.add('downloadBackup', '<n.javascript_string_encode.download_backup_link/>', 'display:none');
        </then>
        <else>
            <n.set_local_node.this_node/>
            <n.if.both condition1="[n.local_node.is_root/]" condition2="[n.visitor.is_site_admin/]">
                <then>
                    NabbleDropdown.show('downloadBackup');
                </then>
            </n.if.both>
        </else>
    </n.if.is_in_command>
</macro>