source: trunk/Modules/WebCam/WebCam.php@ 860

Last change on this file since 860 was 860, checked in by chronos, 6 years ago
  • Modified: Made some links to follow http/https protocol.
  • Modified: Simplified .htaccess.
File size: 3.0 KB
Line 
1<?php
2
3class 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 = "'.$this->System->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()", '.($this->System->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 '.$this->System->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
44class 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 DoStart()
61 {
62 $this->System->Pages['webcam'] = 'PageWebcam';
63 }
64
65 function ShowImage()
66 {
67 global $Config;
68 $Output = '';
69 $Output .= '<a href="//www.zdechov.net/kamery/?Id=5"><img alt="Koupaliště" width="140" height="79" src="//www.zdechov.net/images/webcam/webcam5.jpg" /></a>';
70 $Output .= '<a href="//www.zdechov.net/kamery/?Id=1"><img alt="Webkamera školní hřiště" width="140" height="105" src="//www.zdechov.net/images/webcam/webcam.jpg" /></a>';
71 $Output .= '<a href="//www.zdechov.net/kamery/?Id=2"><img alt="Webkamera střed obce obloha" width="140" height="105" src="//www.zdechov.net/images/webcam/webcam2.jpg" /></a>';
72 $Output .= '<a href="//www.zdechov.net/kamery/?Id=3"><img alt="Skiareál, motokrosová grapa" width="140" height="79" src="//www.zdechov.net/images/webcam/webcam3.jpg" /></a>';
73 $Output .= '<a href="//www.zdechov.net/kamery/?Id=4"><img alt="Fotbalové hřiště" width="140" height="79" src="//www.zdechov.net/images/webcam/webcam4.jpg" /></a>';
74 return($Output);
75 }
76}
Note: See TracBrowser for help on using the repository browser.