1 | <?php
|
---|
2 |
|
---|
3 | define('PAGE_NOT_FOUND', 'Stránka nenalezena');
|
---|
4 |
|
---|
5 | class Page extends Model
|
---|
6 | {
|
---|
7 | var $TimeStart;
|
---|
8 | var $FormatHTML = false;
|
---|
9 | var $ShowRuntimeInfo = false;
|
---|
10 | var $ClearPage = false;
|
---|
11 | var $BasicHTML = false;
|
---|
12 | var $ParentClass = '';
|
---|
13 | var $ShortTitle;
|
---|
14 | var $FullTitle;
|
---|
15 | var $Encoding;
|
---|
16 | var $Style;
|
---|
17 |
|
---|
18 | function __construct($System)
|
---|
19 | {
|
---|
20 | parent::__construct($System);
|
---|
21 |
|
---|
22 | $this->FormatHTML = false;
|
---|
23 | $this->ShowRuntimeInfo = false;
|
---|
24 | $this->Encoding = 'utf-8';
|
---|
25 | $this->Style = 'new';
|
---|
26 |
|
---|
27 | // TODO: Move to external code
|
---|
28 | if(isset($this->System->Config['Web']['FormatHTML']))
|
---|
29 | $this->FormatHTML = $this->System->Config['Web']['FormatHTML'];
|
---|
30 | if(isset($this->System->Config['Web']['ShowRuntimeInfo']))
|
---|
31 | $this->ShowRuntimeInfo = $this->System->Config['Web']['ShowRuntimeInfo'];
|
---|
32 | if(isset($this->System->Config['Web']['Charset']))
|
---|
33 | $this->Encoding = $this->System->Config['Web']['Charset'];
|
---|
34 | if(isset($this->System->Config['Web']['Style']))
|
---|
35 | $this->Style = $this->System->Config['Web']['Style'];
|
---|
36 | }
|
---|
37 |
|
---|
38 | function Show()
|
---|
39 | {
|
---|
40 | return('');
|
---|
41 | }
|
---|
42 |
|
---|
43 | function SystemMessage($Title, $Text)
|
---|
44 | {
|
---|
45 | return('<table align="center"><tr><td><div class="SystemMessage"><h3>'.$Title.'</h3><div>'.$Text.'</div></div></td></tr></table>');
|
---|
46 | //ShowFooter();
|
---|
47 | //die();
|
---|
48 | }
|
---|
49 |
|
---|
50 | function ShowHeader($Title, $Path)
|
---|
51 | {
|
---|
52 | $ScriptName = $_SERVER['REQUEST_URI'];
|
---|
53 | while(strpos($ScriptName, '//') !== false)
|
---|
54 | $ScriptName = str_replace('//', '/', $ScriptName);
|
---|
55 | if(strpos($ScriptName, '?') !== false)
|
---|
56 | $ScriptName = substr($ScriptName, 0, strrpos($ScriptName, '?'));
|
---|
57 | $ScriptName = substr($ScriptName, strlen($this->System->Link('')));
|
---|
58 | if(substr($ScriptName, -1, 1) == '/') $ScriptName = substr($ScriptName, 0, -1);
|
---|
59 | $Page = $this;
|
---|
60 | $Navigation = '';
|
---|
61 | while($Page)
|
---|
62 | {
|
---|
63 | $Navigation = ' > <a href="'.$this->System->Link($ScriptName).'/">'.$Page->ShortTitle.'</a>'.$Navigation;
|
---|
64 |
|
---|
65 | if(class_exists($Page->ParentClass))
|
---|
66 | {
|
---|
67 | $PageClass = $Page->ParentClass;
|
---|
68 | $Page = new $PageClass($this->System);
|
---|
69 | $ScriptName = substr($ScriptName, 0, strrpos($ScriptName, '/'));
|
---|
70 | } else $Page = null;
|
---|
71 | }
|
---|
72 | $Navigation = substr($Navigation, 6);
|
---|
73 |
|
---|
74 | $BodyParam = '';
|
---|
75 | if(isset($this->Load)) $BodyParam .= ' onload="'.$this->Load.'"';
|
---|
76 | if(isset($this->Unload)) $BodyParam .= ' onunload="'.$this->Unload.'"';
|
---|
77 | $Output = '<?xml version="1.0" encoding="'.$this->Encoding.'"?>'."\n".
|
---|
78 | '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'.
|
---|
79 | '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">'.
|
---|
80 | '<head><link rel="stylesheet" href="'.$this->System->Link('/style/').$this->Style.'/style.css" type="text/css" media="all" />'.
|
---|
81 | '<meta http-equiv="content-type" content="application/xhtml+xml; charset='.$this->Encoding.'" />'.
|
---|
82 | '<script type="text/javascript" src="'.$this->System->Link('/style/').$this->Style.'/global.js"></script>'.
|
---|
83 | '<title>'.$this->System->Config['Web']['Title'].' - '.$Path.'</title>
|
---|
84 | </head><body'.$BodyParam.'>';
|
---|
85 | if($this->BasicHTML == false)
|
---|
86 | {
|
---|
87 | $Output .= '<div id="Title">'.$Title.'</div>
|
---|
88 | <div class="Navigation"><span class="MenuItem"><strong>Navigace :: </strong> '.$Navigation.'</span><div class="MenuItem2">';
|
---|
89 | if(isset($this->System->User) and ($this->System->Config['Web']['UserSupport'] == 1))
|
---|
90 | {
|
---|
91 | if($this->System->User->User['Id'] == null)
|
---|
92 | $Output .= '<a href="'.$this->System->Link('/?Action=LoginForm').'">Přihlášení</a> '.
|
---|
93 | '<a href="'.$this->System->Link('/?Action=UserRegister').'">Registrace</a>';
|
---|
94 | else $Output .= $this->System->User->User['Name'].
|
---|
95 | ' <a href="'.$this->System->Link('/?Action=UserMenu').'">Nabídka</a>'.
|
---|
96 | ' <a href="'.$this->System->Link('/?Action=Logout').'">Odhlásit</a>';
|
---|
97 | } else $Output .= ' ';
|
---|
98 | // <a href="'.$this->System->Link('/?Action=UserOptions').'">Nastavení</a>';
|
---|
99 | $Output .= '</div></div>';
|
---|
100 | }
|
---|
101 | return($Output);
|
---|
102 | }
|
---|
103 |
|
---|
104 | function ShowFooter()
|
---|
105 | {
|
---|
106 | global $ScriptTimeStart, $Revision, $ReleaseTime;
|
---|
107 |
|
---|
108 | $Time = round(GetMicrotime() - $ScriptTimeStart, 2);
|
---|
109 | $Output = '';
|
---|
110 | if($this->BasicHTML == false)
|
---|
111 | {
|
---|
112 | $Output .= '<div id="Footer">'.
|
---|
113 | '<i>| Správa webu: '.$this->System->Config['Web']['Admin'].' | e-mail: '.$this->System->Config['Web']['AdminEmail'].' | '.
|
---|
114 | ' Verze: '.$Revision.' ('.HumanDate($ReleaseTime).') |';
|
---|
115 | if($this->ShowRuntimeInfo == true) $Output .= ' Doba generování: '.$Time.' s / '.ini_get('max_execution_time').
|
---|
116 | ' s | Použitá paměť: '.HumanSize(memory_get_peak_usage(FALSE)).' / '.ini_get('memory_limit').'B |';
|
---|
117 | $Output .= '</i></div>';
|
---|
118 | }
|
---|
119 | $Output .= '</body></html>';
|
---|
120 | return($Output);
|
---|
121 | }
|
---|
122 |
|
---|
123 | function GetOutput()
|
---|
124 | {
|
---|
125 | //try {
|
---|
126 | $Output = $this->Show();
|
---|
127 | //} catch (Exception $E) {
|
---|
128 | // $Output = 'Chyba: '.$E->getMessage();
|
---|
129 | //}
|
---|
130 | if($this->ClearPage == false)
|
---|
131 | {
|
---|
132 | $Output = $this->ShowHeader($this->FullTitle, $this->ShortTitle).$Output;
|
---|
133 | $Output .= $this->ShowFooter();
|
---|
134 | if($this->FormatHTML == true) $Output = $this->FormatOutput($Output);
|
---|
135 | }
|
---|
136 | echo($Output);
|
---|
137 | }
|
---|
138 |
|
---|
139 | function NewPage($ClassName)
|
---|
140 | {
|
---|
141 | $Page = new $ClassName();
|
---|
142 | $Page->System = $this->System;
|
---|
143 | $Page->Database = $this->Database;
|
---|
144 | $Page->FormatHTML = $this->FormatHTML;
|
---|
145 | return($Page);
|
---|
146 | }
|
---|
147 |
|
---|
148 | // XML formating function
|
---|
149 | function FormatOutput($s)
|
---|
150 | {
|
---|
151 | $out = '';
|
---|
152 | $nn = 0;
|
---|
153 | $n = 0;
|
---|
154 | while($s != '')
|
---|
155 | {
|
---|
156 | $start = strpos($s, '<');
|
---|
157 | $end = strpos($s, '>');
|
---|
158 | if($start != 0)
|
---|
159 | {
|
---|
160 | $end = $start - 1;
|
---|
161 | $start = 0;
|
---|
162 | }
|
---|
163 | $line = trim(substr($s, $start, $end + 1));
|
---|
164 | if(strlen($line) > 0)
|
---|
165 | if($line[0] == '<')
|
---|
166 | {
|
---|
167 | if($s[$start + 1] == '/')
|
---|
168 | {
|
---|
169 | $n = $n - 2;
|
---|
170 | $nn = $n;
|
---|
171 | } else
|
---|
172 | {
|
---|
173 | if(strpos($line, ' ')) $cmd = substr($line, 1, strpos($line, ' ') - 1);
|
---|
174 | else $cmd = substr($line, 1, strlen($line) - 2);
|
---|
175 | //echo('['.$cmd.']');
|
---|
176 | if(strpos($s, '</'.$cmd.'>')) $n = $n + 2;
|
---|
177 | }
|
---|
178 | }// else $line = '['.$line.']';
|
---|
179 | //if($line != '') echo(htmlspecialchars(str_repeat(' ',$nn).$line."\n"));
|
---|
180 | if($line != '') $out .= (str_repeat(' ', $nn).$line."\n");
|
---|
181 | $s = substr($s, $end + 1, strlen($s));
|
---|
182 | $nn = $n;
|
---|
183 | }
|
---|
184 | return($out);
|
---|
185 | }
|
---|
186 | }
|
---|