ajout admin panel

This commit is contained in:
2025-09-01 19:47:14 +02:00
parent b7885d20cf
commit b1da7d3620
1148 changed files with 197491 additions and 1 deletions
@@ -0,0 +1,12 @@
<?php
use voku\helper\Bootup;
use voku\helper\UTF8;
Bootup::initAll(); // Enables UTF-8 for PHP
UTF8::checkForSupport(); // Check UTF-8 support for PHP
if (defined('PORTABLE_UTF8__ENABLE_AUTO_FILTER') === true) {
Bootup::filterRequestUri(); // Redirects to an UTF-8 encoded URL if it's not already the case
Bootup::filterRequestInputs(); // Normalizes HTTP inputs to UTF-8 NFC
}