How to create custom menus in the Administration Module or User Portal

To create custom menus in the Administration Module or User Portal, you must create or modify the admin.xml or portal.xml file located in the \wfgen\App_Data\CustomMenus\ folder. (Create the folder if it doesn’t already exist.)

This example shows an admin.xml file that will add a My Company link (to http://www.mycompany.com) and a WorkflowGen Resources link (to https://www.workflowgen.com/en/workflow-software-resources/) to the Administration Module.

<?xml version="1.0" encoding="UTF-8"?>
<menu>
<menuItem title="My links" profile="admin">
    <menuItem title="My Company" url="http://www.mycompany.com/" target="_new" description="My Company's website" profile="admin" showInHomepage="true" />
    <menuItem title="WorkflowGen Resources" url="https://www.workflowgen.com/en/workflow-software-resources/" target="" description="WorkflowGen Resource Center" profile="admin" showInHomepage="true" />
</menuItem>
</menu>

This example shows a portal.xml file that will add a My Company link (to http://www.mycompany.com) and a WorkflowGen Resources link (to https://www.workflowgen.com/en/workflow-software-resources/) to the User Portal:

<?xml version="1.0" encoding="UTF-8"?>
<menu>
    <menuItem title="My Company" url="http://www.mycompany.com/" target="_new" description="My Company's website" profile="user" />
    <menuItem title="WorkflowGen Resources" url="https://www.workflowgen.com/en/workflow-software-resources/" target="" description="WorkflowGen Resource Center" profile="user" />
</menu>

For more information, see the Custom menus section in the WorkflowGen Administration Guide.