Jump to content

Using navbar hook code to place url link inside clientarea template?


Recommended Posts

I have a custom hook to add an item to my menu:

add_hook('ClientAreaPrimaryNavbar', 1, function (MenuItem $primaryNavbar) {
       $data=Capsule::table('tblhosting')->where('userid',$_SESSION['uid'])->where('domainstatus','Active')->first();
       if($data){
           $secondaryNavbar = Menu::secondaryNavbar();
           $contactUsLink = $secondaryNavbar->getChild('Account');
           $contactUsLink->addChild('map', array(
               'label' => Lang::trans('myserver_productdetailschange'),
               'uri' => 'clientarea.php?action=productdetails&id='.$data->id.'',
               'order' => 10,
           ));
       }
});

 

I want to add a url link on the clientarea.php page to that same url link in the menu. I am uncertain how to unpackage the navbar hook code above to place new code inside clientarea.php. Is there an easy and fast method?

 

Thank you~

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