-
Notifications
You must be signed in to change notification settings - Fork 208
Integrating Local Reports to the Application
Scott Milliken edited this page May 21, 2023
·
1 revision
Many times a site will wish to create their own customized reports as part of their openDCIM installation. There is a mechanism (starting in version 19.01) to allow you to place your reports into a specific folder, along with a JSON file that enumerates them.
The file to include your reports needs to be in JSON format, and should be called localreports.json. The below example adds in two reports and gives friendly display names. They will be added to the main Reports Screen.
[
{
"DisplayName": "My Local Report",
"FileName": "testreport.php"
},
{
"DisplayName": "Another Local Report",
"FileName": "testreport2.php"
}
]