add stats, and add history import details
This commit is contained in:
@@ -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'
|
||||
]);
|
||||
@@ -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");
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user