siddharth_application/application/third_party/dompdf/www/controller.php
saravanakumar_kandasami a4691068ea updated code
2017-06-26 19:14:29 +05:30

15 lines
341 B
PHP

<?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;
}