source: Administrace/index.php

Last change on this file was 1, checked in by george, 15 years ago
  • Import souborů projektu.
File size: 1006 bytes
Line 
1<?php
2 //hlavièka
3 include '../includes/Global.php';
4 //TODO: vysvìtlivky
5
6
7
8 if ($AdminLevel > 2) { //level 3
9 if (array_key_exists('Type', $_GET)) {
10 $Type = $_GET['Type'];
11 } else {
12 $Type = '0';
13 }
14
15 Echo '<H4>Log:</H4> Filtr: <a href="index.php">Všechno</a>
16 <a href="index.php?Type=1" style="color: '.$Color[1].'">Zprávy</a>
17 <a href="index.php?Type=2" style="color: '.$Color[2].'">Pøidání</a>
18 <a href="index.php?Type=3" style="color: '.$Color[3].'">Editování</a>
19 <a href="index.php?Type=4" style="color: '.$Color[4].'">Mazání</a>
20 <a href="index.php?Type=5" style="color: '.$Color[5].'">Chyby</a>
21 <br />
22 Struktura: Datum èas: text (ID uživatele)
23 <div style="border: 2px dotted rgb(95,45,12);">
24<p style="width: 100%; height: 400; overflow: auto;">
25 ';
26 ReadLog('100',$Type);
27 echo '</div>';
28 } else {
29 include '../includes/FormLogin.php';
30 }
31
32 //botièka (konec)
33 ShowFooter();
34?>
Note: See TracBrowser for help on using the repository browser.