blob: 28452cc585d259b48ef6810ad80fba5f1f89481d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>VDR Live - Screenshots</title>
<?php include ("../html-header.inc") ?>
</head>
<body>
<?php
include ("../page-php-classes.inc");
include ("settings-de.inc");
?>
<div class="page_header">
<?php include ("../page-header.inc"); ?>
</div>
<div style="clear:both"></div>
<?php include ("../page-menu.inc"); ?>
<div class="inhalt">
<div style="width: 840px; margin-top: 15px">
<div class="boxheader"><div><div>
<?php
if (isset($_GET["img"])) {
echo "Screenshot: " . $screenshots->ImageDescr($_GET["img"], "Unbekanntes Bild");
}
else {
echo "Screenshots: Übersicht";
}
?>
</div></div></div>
<div class="screenshots">
<?php
if (isset($_GET["img"])) {
$screenshots->FullImage($_GET["img"]);
}
else {
$screenshots->AllImg();
}
?>
<!--
<a href="img/whatson.jpg"><img src="img/whatson_thumb.jpg" alt="whats on"></img></a>
<a href="img/schedule.jpg"><img src="img/schedule_thumb.jpg" alt="whats on"></img></a>
<a href="img/timers.jpg"><img src="img/timers_thumb.jpg" alt="whats on"></img></a>
<a href="img/searchepg.jpg"><img src="img/searchepg_thumb.jpg" alt="whats on"></img></a>
<a href="img/edit_searchtimer.jpg"><img src="img/edit_searchtimer_thumb.jpg" alt="whats on"></img></a>
<a href="img/recordings.jpg"><img src="img/recordings_thumb.jpg" alt="whats on"></img></a>
<a href="img/remote.jpg"><img src="img/remote_thumb.jpg" alt="whats on"></img></a>
<a href="img/setup.jpg"><img src="img/setup_thumb.jpg" alt="whats on"></img></a>
-->
</div>
</div>
</div>
</body>
</html>
|