/Web/Maintenance/Maintenance.php
1,19 → 1,13
<p>
Zobraz vzorovou stránku
<a href="../Templates/Template.cs.html">CS</a>
<a href="../Templates/Template.en.html">EN</a>
<br>
Zobraz prázdnou stránku
<a href="../Templates/Empty.cs.html">CS</a>
<a href="../Templates/Empty.en.html">EN</a>
<br>
<a href="Log.php">Výpis naposled změněných souborů</a>
<br>
<a href="PhpInfo.php">Výpis PhpInfo()</a>
<br>
<a href="HistoryLog.php">Výpis history.log</a>
<br>
<a href="ToDoList.html">To Do List</a>
<br>
<a href="./phpMyAdmin/index.php">phpMyAdmin</a>
</p>
<?php
// Zpracování parametru
// Parametrem "selection" je jméno skriptu v aktuálním adresáři
// bez přípony (php). Pokud neexistuje volí se defaultní volba.
if (isset($selection)) unset($selection); // vyčisti proměnnou
$selection=$_GET["selection"]; // vezmi parametr "selection"
$selection=preg_replace("/[^a-zA-Z0-9]/e","",$selection); // ponech jen písmenka
$selection.=".php"; // přidej příponu
//echo $selection;
if (!file_exists($selection)) // otestuj existenci
$selection="List.php"; // defaultní volba
include($selection); // vlož zvolený obsah
?>