32 lines
999 B
PHP
32 lines
999 B
PHP
<?php
|
|
|
|
echo "<h3>Folgende Listen sind verfügbar:</h3><br><br>";
|
|
|
|
$pdf_dir = openDir("pdf_listen");
|
|
|
|
while ($file = readDir($pdf_dir))
|
|
{
|
|
if ($file != "." && $file != ".." && $file != ".htaccess") // Höhere Verzeichnisse und HTTP-Konfig nicht anzeigen!
|
|
{
|
|
$afile[]=$file;
|
|
}
|
|
}
|
|
closedir($pdf_dir);
|
|
|
|
rsort($afile);
|
|
$anz=count($afile);
|
|
|
|
|
|
echo "<table class=\"table table-striped table-bordered table-hover\">";
|
|
|
|
for($i=0;$i<$anz;$i++)
|
|
{
|
|
$complFile = getcwd() . "/pdf_listen/$afile[$i]";
|
|
echo "<tr><td><b>$afile[$i]</b></td><td width=\"50\"><a href=\"addons/pdfhandler.php?file=$afile[$i]&download=0\" target=\"_blank\"><div class=\"btn btn-primary btn-circle\"><i class=\"fa fa-eye\"></i></div></a></td><td width=\"50\"> <a href=\"addons/pdfhandler.php?file=$afile[$i]&download=1\"><div class=\"btn btn-primary btn-circle\"><i class=\"fa fa-download\"></i></div></a></td><td><i>Stand:". date("d.m.Y H:i:s", filectime($complFile)) ." </td> </tr>";
|
|
}
|
|
|
|
echo "</table>";
|
|
|
|
?>
|
|
|