Primer commit del sistema avantika sin cambios

This commit is contained in:
2026-01-06 19:42:24 -06:00
commit 3ae4be5957
7127 changed files with 440072 additions and 0 deletions

15
pdf/www/controller.php Executable file
View File

@@ -0,0 +1,15 @@
<?php
$cmd = isset($_GET["cmd"]) ? $_GET["cmd"] : null;
include "../dompdf_config.inc.php";
switch ($cmd) {
case "clear-font-cache":
$files = glob(DOMPDF_FONT_DIR."*.{ufm,afm}.php", GLOB_BRACE);
foreach($files as $file) {
unlink($file);
}
echo count($files)." cache files removed. Refresh page.<br />";
break;
}