Wstępna administracja zdjęć oraz działająca opcja ich usuwania.

git-svn-id: https://svn.pioder.pl/sg-svn@21 3ed2631f-fe0d-47e0-9194-a46bc0f18ee8
This commit is contained in:
pioder
2009-09-22 14:38:37 +00:00
parent 3b78022753
commit 73d0952fcc
8 changed files with 176 additions and 78 deletions

View File

@@ -105,12 +105,33 @@ function NaglowekPA($nazwapodstrony)
<meta http-equiv="Content-Type" content="'.($xhtml?'application/xhtml+x':'text/ht').'ml; charset=utf-8" />
<style type="text/css">
body { font-family: Verdana; font-size: 10pt}
a { color: red; text-decoration: none }
a:hover { color: orange; text-decoration: underline }
.b { background-color: #666666; color: white; border: 1px; }
</style>
</head>
<body>
<center>
<div align="center" style="width: 900px">
<h1>Panel Administracyjny Galerii Zdjęć</h1>
';
';
if ($_SESSION['logged'])
{
echo '
<a href="index.php?mode=admin_gallery">Administruj galerią</a>&nbsp;&bull;
<a href="index.php?mode=admin_users">Administruj użytkownikami</a>&nbsp;&bull;
<a href="index.php?mode=logout">Wyloguj</a>&nbsp;';
}
}
function StopkaPA()
{
echo '
<span style="font-size: 8pt">ACP by <a href="http://pioder.gim2przemysl.int.pl" target="_blank">PioDer</a> &copy; 2009</span>
</div>
</center>
</body>
</html>
';
}
?>