menu_manage_subscribers

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_manage_subscribers".
... in dropdown.naml
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
<macro name="menu_manage_subscribers" requires="node">
    <n.if.is_in_command name="dropdown">
        <then>
            dropdown.add('manageSubscribers', '<n.javascript_string_encode.manage_subscribers_link/>', 'display:none');
        </then>
        <else>
            <n.set_local_node.this_node/>
            <n.if.visitor.can_manage_subscribers_of.local_node>
                <then>
                    NabbleDropdown.show('manageSubscribers');
                </then>
            </n.if.visitor.can_manage_subscribers_of.local_node>
        </else>
    </n.if.is_in_command>
</macro>