Eg to Add a My Account Menu & MyAccountMenu component

Add a My Account Menu named “Preorders” which redirects to a landing page “test”  using extension. 

var myaccountmenu = container.getComponent(“MyAccountMenu”); 

if(myaccountmenu) 

 var preordersmenugroup = { 

     id: “preorders”, 

     name: “Preorders”, 

     index: 2, 

     url: “test”, 

     permissionoperator: “OR”, 

     permissions: [ 

         { 

             group: “transactions”, 

             id: “TRAN_CUSTINVC”, 

             level: “1” 

         }, 

         { 

             group: “transactions”, 

             id: “TRAN_CUSTCRED”, 

             level: “1” 

         } 

     ] 

myaccountmenu.addGroup(preordersmenugroup); 

Leave a comment

Your email address will not be published. Required fields are marked *