menu_change_domain_name

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_change_domain_name".
... in dropdown.naml
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
<macro name="menu_change_domain_name" requires="node">
    <n.if.is_in_command name="dropdown">
        <then>
            dropdown.add('changeDomainName', '<n.javascript_string_encode.change_domain_name_link/>', 'display:none');
        </then>
        <else>
            <n.set_local_node.this_node/>
            <n.if.both condition1="[n.visitor.can_edit.local_node/]" condition2="[n.local_node.is_root/]">
                <then>
                    NabbleDropdown.show('changeDomainName');
                </then>
            </n.if.both>
        </else>
    </n.if.is_in_command>
</macro>