OpenEMR add Menu and Sub Menu

Hello,
How to add a new Menu and its submenu on the top of OpenEMR?
I made changes to /interface/main/tabs/menu/menus/standard.json. It shows my Menu and its submenu but it also shows “Unknown” caption

In standard.json:

{
        "label": "EXAMPLE",
        "menu_id": "cod0",
        "target": "cod",
        "url": "/links/example.php",
        "children": [],
        "requirement": 0
      },

In example.php:

<?php

$title = "Your title goes here";
require("header.php");

?>

or

<html>
    <head>
        <title>Your title goes here)</title>
    </head>
    <body>
        ....
    </body>
</html>

Regards.
Luis.

1 Like

Luis,
Thank you very much. it works.
Sapar

1 Like