Jump to content

Is it possible to remove item from ClientAreaPrimarySidebar depending on Registrar Module?


Niley

Recommended Posts

Hello,

I am attempting to remove a menu item from the client sidebar when viewing domain details (the "Modify Nameservers" item). I can add the code below to the registrar module's hooks.php file, and the menu item is removed, however this same hook also affects every other registrar module.  Is it possible to determine the module name within hooks.php so that a condition can be added to only apply the hook to the particular registrar module I wish to affect ?

add_hook('ClientAreaPrimarySidebar', 1, function(MenuItem $primarySidebar) {
    if (!is_null($primarySidebar->getChild('Domain Details Management'))) {
        $primarySidebar->getChild('Domain Details Management')
                       ->removeChild('Modify Nameservers');
        }
});

Thank you for your assistance,

Niall.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated