ACC SHELL
<?php
/**
* @author Filip Štencl
* @since 15.11.2014
*
*/
DEFINE("DEBUGGER",FALSE);
require("../../include/config.php");
use Nette\Utils\Finder;
$soubory = array();
foreach (Finder::findFiles('*.html')->in("../../logs") as $key => $file) {
$soubory[] = $key;
}
if (count($soubory) == 0) { echo "<h3 style=\"font-family:Helvetica, arial, sans-serif; text-align: center; padding: 100px; color: green;\">Dokonalý web přece chyby nemá...</3>";}
arsort($soubory);
$citac = 0;
foreach($soubory as $file) {
if ($citac == 0) { readfile($file); }
$citac++;
}
ACC SHELL 2018