1 | <?php
|
---|
2 |
|
---|
3 | class PageWebcam extends Page
|
---|
4 | {
|
---|
5 | var $FullTitle = 'Webová kamera';
|
---|
6 | var $ShortTitle = 'Kamera';
|
---|
7 | var $ParentClass = 'PagePortal';
|
---|
8 |
|
---|
9 | function Show()
|
---|
10 | {
|
---|
11 | if(file_exists($this->System->ModuleManager->Modules['WebCam']->ImageFileName))
|
---|
12 | {
|
---|
13 | $Output = '<script language="JavaScript">
|
---|
14 | var ImageURL = "'.$Config['Web']['RootFolder'].'/webcam/'.$this->System->Modules['Webcam']->ImageFileName.'";
|
---|
15 |
|
---|
16 | // Force an immediate image load
|
---|
17 | var theTimer = setTimeout("reloadImage()", 1);
|
---|
18 |
|
---|
19 | function reloadImage()
|
---|
20 | {
|
---|
21 | theDate = new Date();
|
---|
22 | var url = ImageURL;
|
---|
23 | url += "?dummy=";
|
---|
24 | url += theDate.getTime().toString(10);
|
---|
25 | // The above dummy cgi-parameter enforce a bypass of the browser image cache.
|
---|
26 | // Here we actually load the image
|
---|
27 | document.theImage.src = url;
|
---|
28 |
|
---|
29 | // Reload the image every defined period
|
---|
30 | theTimer = setTimeout("reloadImage()", '.($Config['Web']['WebcamRefresh'] * 1000).');
|
---|
31 | }
|
---|
32 | </script>';
|
---|
33 |
|
---|
34 | $Output .= '<br /><div align="center"><img name="theImage" src="" idth="640" height="480" alt="Webcam image"><br>Poslední aktualizace: '.date('j.n.Y G:i', filemtime($this->System->Modules['Webcam']->ImageFileName)).'<br>Obnovování po '.$Config['Web']['WebcamRefresh'].' sekundách</div><br />';
|
---|
35 | } else $Output = '<br />Obrázek nenalezen.<br /><br />';
|
---|
36 |
|
---|
37 | $Output .= '<strong>Kamery v okolí:</strong><br />'.
|
---|
38 | '<a href="http://www.mestovsetin.cz/vismo/dokumenty2.asp?id_org=18676&id=480245">Webové kamery ve Vsetíně</a><br />';
|
---|
39 |
|
---|
40 | return($Output);
|
---|
41 | }
|
---|
42 | }
|
---|
43 |
|
---|
44 | class ModuleWebCam extends AppModule
|
---|
45 | {
|
---|
46 | var $ImageFileName = 'webcam.jpg';
|
---|
47 |
|
---|
48 | function __construct($System)
|
---|
49 | {
|
---|
50 | parent::__construct($System);
|
---|
51 | $this->Name = 'WebCam';
|
---|
52 | $this->Version = '1.0';
|
---|
53 | $this->Creator = 'Chronos';
|
---|
54 | $this->License = 'GNU/GPL';
|
---|
55 | $this->Description = 'Web camera image presentetation';
|
---|
56 | $this->Dependencies = array();
|
---|
57 | $this->SupportedModels = array();
|
---|
58 | }
|
---|
59 |
|
---|
60 | function Start()
|
---|
61 | {
|
---|
62 | parent::Start();
|
---|
63 | $this->System->Pages['webcam'] = 'PageWebcam';
|
---|
64 | }
|
---|
65 |
|
---|
66 | function ShowImage()
|
---|
67 | {
|
---|
68 | global $Config;
|
---|
69 | $Output = '';
|
---|
70 | $Output = '<a href="http://www.zdechov.net/kamery/?id=1"><img alt="Webkamera školní hřiště" width="140" height="105" src="http://www.zdechov.net/images/webcam/webcam.jpg" /></a>';
|
---|
71 | $Output .= '<a href="http://www.zdechov.net/kamery/?id=2"><img alt="Webkamera střed obce obloha" width="140" height="105" src="http://www.zdechov.net/images/webcam/webcam2.jpg" /></a>';
|
---|
72 | $Output .= '<a href="http://www.zdechov.net/kamery/?id=3"><img alt="Skiareál, motokrosová grapa" width="140" height="79" src="http://www.zdechov.net/images/webcam/webcam3.jpg" /></a>';
|
---|
73 | $Output .= '<a href="http://www.zdechov.net/kamery/?id=4"><img alt="Fotbalové hřiště" width="140" height="79" src="http://www.zdechov.net/images/webcam/webcam4.jpg" /></a>';
|
---|
74 | return($Output);
|
---|
75 | }
|
---|
76 | }
|
---|
77 |
|
---|
78 | ?>
|
---|