diff --git a/config/functions_init.php b/config/functions_init.php
index 15a8a21..3b0a610 100644
--- a/config/functions_init.php
+++ b/config/functions_init.php
@@ -58,7 +58,8 @@ function resolve_page() {
$debug_messages = [
'High' => [],
'Medium' => [],
- 'Low' => []
+ 'Low' => [],
+ 'Info' => []
];
// FUNCTION TO GET DEBUG STATUS MESSAGES
@@ -100,6 +101,7 @@ function displayDebug() {
$color = '#6cef93';
if ($level === 'High') $color = '#ff4444';
if ($level === 'Medium') $color = '#ffbb33';
+ if ($level === 'Info') $color = '#4444ff';
echo "
";
echo "[" . $level . "]";
diff --git a/functions/functions.php b/functions/functions.php
index 42184a9..a6776fb 100644
--- a/functions/functions.php
+++ b/functions/functions.php
@@ -6,7 +6,7 @@ You don't need to specify the extension .php, the system will automatically add
*/
$fun_to_inc = array(
//"example",
- "test"
+ "demo-example"
);
// DON'T CHANGE THE CODE BELOW!!!
@@ -16,6 +16,9 @@ if (isset($fun_to_inc) && is_array($fun_to_inc) && !empty($fun_to_inc)){
require_once(FUNCTIONS_FOLD . $fun . ".php");
} else {
debugStatusMes("Function file $fun.php not found in functions folder: '" . FUNCTIONS_FOLD . "'", "Medium");
+ if ($fun === "demo-example") {
+ debugStatusMes("The 'demo-example' function is only a demo. If you create a new function, needs to be included in the file specified above. Please remove the demo-example record from 'functions/functions.php' ", "Info");
+ }
}
}
}
\ No newline at end of file