add stats, and add history import details

This commit is contained in:
2024-10-17 13:52:03 +02:00
parent 01fffcb0ac
commit 4f0ad202c9
11 changed files with 630 additions and 7 deletions
@@ -0,0 +1,37 @@
<?php
// Definizioni di rating centralizzate
// Array di denominazioni per "Pass"
define("RATING_PASS", [
'PASS',
'P',
'Complies',
'Comply',
'pass',
'Pass',
'comply',
'complies'
]);
// Array di denominazioni per "Fail"
define("RATING_FAIL", [
'FAIL',
'F',
'Doesn\'t Comply',
'fail',
'Fail',
'f',
'doesn\'t comply'
]);
// Array di denominazioni per "Data" o "Other"
define("RATING_OTHER", [
'DATA',
'D',
'Data',
'data',
'other',
'misc',
'//',
'N/A'
]);
+1
View File
@@ -94,5 +94,6 @@ include(BASE_PATH . '/public/languages/en/dash.php');
include(BASE_PATH . "/public/userarea/include/generalsettings.php");
include(BASE_PATH . "/public/userarea/include/class/company.php");
//include(BASE_PATH . "/public/userarea/include/class/rating_definitions.php");
?>