1 | <?php
|
---|
2 |
|
---|
3 | class IndexPage extends Page
|
---|
4 | {
|
---|
5 | function __construct()
|
---|
6 | {
|
---|
7 | parent::__construct();
|
---|
8 | $this->FullTitle = 'Zděchovský rozcestník';
|
---|
9 | $this->ShortTitle = 'Administrace sítě';
|
---|
10 | $this->NavigationPath[] = array('Name' => $this->ShortTitle, 'URL' => 'sprava');
|
---|
11 | }
|
---|
12 |
|
---|
13 | function ShowLinks($HyperlinkGroup)
|
---|
14 | {
|
---|
15 | $Output = '';
|
---|
16 | $DbResult = $this->Database->query('SELECT * FROM `Hyperlink` WHERE (`Group`='.$HyperlinkGroup['Id'].') AND (`Enable` = 1)');
|
---|
17 | while($HyperLink = $DbResult->fetch_assoc())
|
---|
18 | {
|
---|
19 | if($HyperLink['IconFile'] == '') $HyperLink['IconFile'] = 'clear.png';
|
---|
20 | if(substr($HyperLink['URL'], 0, 4) != 'http') $HyperLink['URL'] = $this->System->Config['Web']['RootFolder'].$HyperLink['URL'];
|
---|
21 | if(($HyperLink['PermissionModule'] == '') or (($HyperLink['PermissionModule'] != '') and $this->System->Modules['User']->Models['User']->CheckPermission($HyperLink['PermissionModule'], $HyperLink['PermissionOperation'])))
|
---|
22 | $Output .= '<img alt="'.$HyperLink['Name'].'" src="images/favicons/'.$HyperLink['IconFile'].'" width="16" height="16" /> <a href="'.$HyperLink['URL'].'">'.$HyperLink['Name'].'</a><br />';
|
---|
23 | }
|
---|
24 | return($this->Panel($HyperlinkGroup['Name'], $Output));
|
---|
25 | }
|
---|
26 |
|
---|
27 | function InfoBar()
|
---|
28 | {
|
---|
29 | global $Config;
|
---|
30 |
|
---|
31 | $this->Database->select_db($Config['Database']['Database']);
|
---|
32 |
|
---|
33 | $Output2 = '';
|
---|
34 |
|
---|
35 | $DbResult = $this->Database->query('SELECT COUNT(*) FROM NetworkDevice LEFT JOIN NetworkDeviceType ON NetworkDeviceType.Id = NetworkDevice.Type WHERE NetworkDeviceType.ShowOnline = 1');
|
---|
36 | $DbRow = $DbResult->fetch_array();
|
---|
37 | $TotalComputers = $DbRow[0];
|
---|
38 |
|
---|
39 | $DbResult = $this->Database->query('SELECT COUNT(*) FROM NetworkDevice LEFT JOIN NetworkDeviceType ON NetworkDeviceType.Id = NetworkDevice.Type WHERE (NetworkDeviceType.ShowOnline = 1) AND (NetworkDevice.Online = 1)');
|
---|
40 | $DbRow = $DbResult->fetch_array();
|
---|
41 | $OnlineComputers = $DbRow[0];
|
---|
42 |
|
---|
43 | $Output = '<img alt="" src="images/favicons/comp.png" width="16" height="16" /> '.$OnlineComputers.' / '.$TotalComputers.' ';
|
---|
44 |
|
---|
45 | $DbResult = $this->Database->select('Member', 'COUNT(*)', 'MemberState=0');
|
---|
46 | $DbRow = $DbResult->fetch_array();
|
---|
47 | $TotalUser = $DbRow[0];
|
---|
48 |
|
---|
49 | $DbResult = $this->Database->query('SELECT COUNT(DISTINCT(Member)) FROM NetworkDevice LEFT JOIN NetworkDeviceType ON NetworkDeviceType.Id = NetworkDevice.Type WHERE NetworkDeviceType.ShowOnline = 1 AND NetworkDevice.Online = 1');
|
---|
50 | $DbRow = $DbResult->fetch_array();
|
---|
51 | $OnlineUser = $DbRow[0];
|
---|
52 |
|
---|
53 | $Output .= '<img alt="" src="images/favicons/house.png" width="16" height="16" /> '.$OnlineUser.' / '.$TotalUser.' ';
|
---|
54 |
|
---|
55 | $NetworkUsage = 0;
|
---|
56 | $Output .= '<img alt="" src="images/favicons/usage.png" width="16" height="16" /> '.$NetworkUsage.' % ';
|
---|
57 |
|
---|
58 | //$Output .= 'Server běží: '.$this->GetServerUptime().' ';
|
---|
59 |
|
---|
60 | if($this->System->Modules['User']->Models['User']->CheckPermission('Finance', 'DisplaySubjectState'))
|
---|
61 | {
|
---|
62 | $DbResult = $this->Database->select('Subject', 'Money', 'Id=(SELECT Subject FROM Member WHERE Id=(SELECT Member FROM User WHERE Id='.$this->System->Modules['User']->Models['User']->User['Id'].'))');
|
---|
63 | if($DbResult->num_rows > 0)
|
---|
64 | {
|
---|
65 | $DbRow = $DbResult->fetch_assoc();
|
---|
66 | $Output2 .= ' <img alt="" src="images/favicons/money.png" width="16" height="16" /> '.$DbRow['Money'].' Kč';
|
---|
67 | }
|
---|
68 | }
|
---|
69 |
|
---|
70 | $Output = '<div class="Navigation"><span class="MenuItem">'.$Output.'</span><div class="MenuItem2"> '.$Output2.'</div></div>';
|
---|
71 | return($Output);
|
---|
72 | }
|
---|
73 |
|
---|
74 | function UserPanel()
|
---|
75 | {
|
---|
76 | $Output = '<a href="'.$this->System->Config['Web']['RootFolder'].'/?Action=UserOptions">Profil</a><br />';
|
---|
77 | if($this->System->Modules['User']->Models['User']->CheckPermission('Finance', 'MemberOptions'))
|
---|
78 | $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'?Action=MemberOptions">Domácnost</a><br />';
|
---|
79 | if($this->System->Modules['User']->Models['User']->CheckPermission('Finance', 'DisplaySubjectState'))
|
---|
80 | $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/finance/uzivatel/">Finance</a><br />';
|
---|
81 | if($this->System->Modules['User']->Models['User']->CheckPermission('Network', 'RegistredHostList'))
|
---|
82 | $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/sit/registrovane-pocitace/">Počítače</a><br />';
|
---|
83 | if($this->System->Modules['User']->Models['User']->CheckPermission('News', 'Insert'))
|
---|
84 | $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/aktuality/?action=add">Vložení aktuality</a><br />';
|
---|
85 | if($this->System->Modules['User']->Models['User']->CheckPermission('EatingPlace', 'Edit'))
|
---|
86 | $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/jidelna/edit/">Editace jídelníčků</a><br />';
|
---|
87 | if($this->System->Modules['User']->Models['User']->CheckPermission('Finance', 'Manage'))
|
---|
88 | $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/finance/sprava/">Správa financí</a><br />';
|
---|
89 | if($this->System->Modules['User']->Models['User']->CheckPermission('Network', 'Administration'))
|
---|
90 | $Output .= '<a href="'.$this->System->Config['Web']['RootFolder'].'/sit/sprava/">Správa sítě</a><br />';
|
---|
91 | return($Output);
|
---|
92 | }
|
---|
93 |
|
---|
94 | function WebcamPanel()
|
---|
95 | {
|
---|
96 | $Output = $this->System->Modules['WebCam']->ShowImage();
|
---|
97 | return($Output);
|
---|
98 | }
|
---|
99 |
|
---|
100 | function OnlineHostList()
|
---|
101 | {
|
---|
102 | $Output = '<span style="font-size: smaller;">';
|
---|
103 | $DbResult = $this->Database->query('SELECT NetworkDevice.Name FROM NetworkDevice LEFT JOIN NetworkDeviceType ON NetworkDeviceType.Id = NetworkDevice.Type WHERE (NetworkDeviceType.ShowOnline = 1) AND (NetworkDevice.Online = 1) ORDER BY NetworkDevice.Name');
|
---|
104 | while($Device = $DbResult->fetch_array())
|
---|
105 | {
|
---|
106 | $Output .= $Device['Name'].'<br />';
|
---|
107 | }
|
---|
108 | $Output .= '</span>';
|
---|
109 | return($Output);
|
---|
110 | }
|
---|
111 |
|
---|
112 | function ShowBadPayerList()
|
---|
113 | {
|
---|
114 | $Output .= '<div class="PanelTitle">Dlužníci:</div><span style="font-size: smaller;">';
|
---|
115 | $DbResult = $Database->select('Subject', 'Name', 'Money < 0 ORDER BY Money');
|
---|
116 | while($Row = $DbResult->fetch_array())
|
---|
117 | {
|
---|
118 | $Output .= $Row['Name'].'<br />';
|
---|
119 | }
|
---|
120 | $Output .= '</span>';
|
---|
121 | return($Output);
|
---|
122 | }
|
---|
123 |
|
---|
124 | function Panel($Title, $Content, $Menu = array())
|
---|
125 | {
|
---|
126 | if(count($Menu) > 0)
|
---|
127 | foreach($Menu as $Item)
|
---|
128 | $Title .= '<div class="Action">'.$Item.'</div>';
|
---|
129 | return('<div class="Panel"><div class="Title">'.$Title.'</div><div class="Content">'.$Content.'</div></div>');
|
---|
130 | }
|
---|
131 |
|
---|
132 | function Show()
|
---|
133 | {
|
---|
134 | global $Database, $Config, $User;
|
---|
135 |
|
---|
136 | $Output = '';
|
---|
137 | if(array_key_exists('Action', $_GET))
|
---|
138 | {
|
---|
139 | if($_GET['Action'] == 'CustomizeNewsSave')
|
---|
140 | {
|
---|
141 | $Output .= $this->System->Modules['News']->CustomizeSave();
|
---|
142 | } else
|
---|
143 | if($_GET['Action'] == 'LoginForm')
|
---|
144 | {
|
---|
145 | $Form = new UserLoginView($this->Database);
|
---|
146 | $Form->OnSubmit = '?Action=Login';
|
---|
147 | $Output .= $Form->ShowEditForm();
|
---|
148 | $Output .= '<div class="Centred"><a href="?Action=UserRegister">Registrovat se</a> '.
|
---|
149 | '<a href="?Action=PasswordRecovery">Obnova zapomenutého hesla</a></div>';
|
---|
150 | } else
|
---|
151 | if($_GET['Action'] == 'Login')
|
---|
152 | {
|
---|
153 | $Form = new UserLoginView($this->Database);
|
---|
154 | $Form->OnSubmit = '?Action=Login';
|
---|
155 | $Result = $this->System->Modules['User']->Models['User']->Login($_POST['Username'], $_POST['Password']);
|
---|
156 | $Output .= $this->SystemMessage('Přihlášení', $Result);
|
---|
157 | if($Result <> USER_LOGGED_IN)
|
---|
158 | {
|
---|
159 | $Form->LoadValuesFromForm();
|
---|
160 | $Form->Values['Password'] = '';
|
---|
161 | $Output .= $Form->ShowEditForm();
|
---|
162 | $Output .= '<div class="Centred"><a href="?Action=UserRegister">Registrovat se</a> '.
|
---|
163 | '<a href="?Action=PasswordRecovery">Obnova zapomenutého hesla</a></div>';
|
---|
164 | }
|
---|
165 | } else
|
---|
166 | if($_GET['Action'] == 'Logout')
|
---|
167 | {
|
---|
168 | $Output .= $this->SystemMessage('Odhlášení', $this->System->Modules['User']->Models['User']->Logout());
|
---|
169 | } else
|
---|
170 | if($_GET['Action'] == 'UserOptions')
|
---|
171 | {
|
---|
172 | $UserOptions = new UserOptionsView($this->Database);
|
---|
173 | $UserOptions->LoadValuesFromDatabase($this->System->Modules['User']->Models['User']->User['Id']);
|
---|
174 | $UserOptions->OnSubmit = '?Action=UserOptionsSave';
|
---|
175 | $Output .= $UserOptions->ShowEditForm();
|
---|
176 | } else
|
---|
177 | if($_GET['Action'] == 'UserOptionsSave')
|
---|
178 | {
|
---|
179 | $UserOptions = new UserOptionsView($this->Dstabase, array());
|
---|
180 | $UserOptions->LoadValuesFromForm();
|
---|
181 | $UserOptions->SaveValuesToDatabase($this->System->Modules['User']->Models['User']->User['Id']);
|
---|
182 | $Output .= $this->SystemMessage('Nastavení', 'Nastavení uloženo.');
|
---|
183 | $this->System->Modules['Log']->NewRecord('User', 'Nastavení uživatele změněno', $UserOptions->Values['Name']);
|
---|
184 | $UserOptions->LoadValuesFromDatabase($this->System->Modules['User']->Models['User']->User['Id']);
|
---|
185 | $UserOptions->OnSubmit = '?Action=UserOptionsSave';
|
---|
186 | $Output .= $UserOptions->ShowEditForm();
|
---|
187 | }
|
---|
188 | if($_GET['Action'] == 'UserRegister')
|
---|
189 | {
|
---|
190 | $Form = new UserRegisterView($this->Database);
|
---|
191 | $Form->LoadValuesFromForm();
|
---|
192 | $Form->OnSubmit = '?Action=UserRegisterSave';
|
---|
193 | $Output .= $Form->ShowEditForm();
|
---|
194 | } else
|
---|
195 | if($_GET['Action'] == 'UserRegisterConfirm')
|
---|
196 | {
|
---|
197 | $Output .= $this->SystemMessage('Potvrzení registrace', $this->System->Modules['User']->Models['User']->RegisterConfirm($_GET['User'], $_GET['H']));
|
---|
198 | } else
|
---|
199 | if($_GET['Action'] == 'PasswordRecovery')
|
---|
200 | {
|
---|
201 | $Form = new PasswordRecoveryView($this->Database);
|
---|
202 | $Form->OnSubmit = '?Action=PasswordRecovery2';
|
---|
203 | $Output .= $Form->ShowEditForm();
|
---|
204 | } else
|
---|
205 | if($_GET['Action'] == 'PasswordRecovery2')
|
---|
206 | {
|
---|
207 | $Form = new PasswordRecoveryView($this->Database);
|
---|
208 | $Form->LoadValuesFromForm();
|
---|
209 | $Result = $this->System->Modules['User']->Models['User']->PasswordRecoveryRequest($Form->Values['Name'], $Form->Values['Email']);
|
---|
210 | $Output .= $this->SystemMessage('Obnova hesla', $Result);
|
---|
211 | if($Result <> USER_PASSWORD_RECOVERY_SUCCESS)
|
---|
212 | {
|
---|
213 | $Output .= $Form->ShowEditForm();
|
---|
214 | }
|
---|
215 | } else
|
---|
216 | if($_GET['Action'] == 'PasswordRecoveryConfirm')
|
---|
217 | {
|
---|
218 | $Output .= $this->SystemMessage('Obnova hesla', $this->System->Modules['User']->Models['User']->PasswordRecoveryConfirm($_GET['User'], $_GET['H'], $_GET['P']));
|
---|
219 | } else
|
---|
220 | if($_GET['Action'] == 'UserRegisterSave')
|
---|
221 | {
|
---|
222 | $Form = new UserRegisterView($this->Database, array());
|
---|
223 | $Form->LoadValuesFromForm();
|
---|
224 | $Result = $this->System->Modules['User']->Models['User']->Register($Form->Values['Login'], $Form->Values['Password'], $Form->Values['Password2'], $Form->Values['Email'], $Form->Values['Name'], $Form->Values['PhoneNumber'], $Form->Values['ICQ']);
|
---|
225 | $Output .= $this->SystemMessage('Registrace nového účtu', $Result);
|
---|
226 | if($Result <> USER_REGISTRATED)
|
---|
227 | {
|
---|
228 | $Form->OnSubmit = '?Action=UserRegisterSave';
|
---|
229 | $Output .= $Form->ShowEditForm();
|
---|
230 | }
|
---|
231 | } else
|
---|
232 | if($_GET['Action'] == 'MemberOptions')
|
---|
233 | {
|
---|
234 | $UserOptions = new MemberOptionsView($this->Database);
|
---|
235 | $DbResult = $this->Database->query('SELECT Member.Id, Member.InternetTariffNextMonth, Member.FamilyMemberCount, Member.BillingPeriodNext, Subject.Name, Subject.AddressStreet, Subject.AddressTown, Subject.AddressPSC, Subject.IC, Subject.DIC FROM Member JOIN Subject ON Subject.Id = Member.Subject WHERE Member.Id='.$this->System->Modules['User']->Models['User']->User['Member']);
|
---|
236 | $DbRow = $DbResult->fetch_array();
|
---|
237 | foreach($UserOptions->Items as $Index => $Item)
|
---|
238 | {
|
---|
239 | $UserOptions->Values[$Index] = $DbRow[$Index];
|
---|
240 | }
|
---|
241 | $UserOptions->OnSubmit = '?Action=MemberOptionsSave';
|
---|
242 | $Output .= $UserOptions->ShowEditForm();
|
---|
243 | } else
|
---|
244 | if($_GET['Action'] == 'MemberOptionsSave')
|
---|
245 | {
|
---|
246 | $UserOptions = new MemberOptionsView($this->Database);
|
---|
247 | $UserOptions->LoadValuesFromForm();
|
---|
248 | if($UserOptions->Values['FamilyMemberCount'] < 0)
|
---|
249 | $UserOptions->Values['FamilyMemberCount'] = 0;
|
---|
250 | if($UserOptions->Values['BillingPeriodNext'] < 2)
|
---|
251 | $UserOptions->Values['BillingPeriodNext'] = 2;
|
---|
252 |
|
---|
253 | $DbResult = $this->Database->update('Member', 'Id='.$this->System->Modules['User']->Models['User']->User['Member'], array('InternetTariffNextMonth' => $UserOptions->Values['InternetTariffNextMonth'], 'FamilyMemberCount' => $UserOptions->Values['FamilyMemberCount'], 'BillingPeriodNext' => $UserOptions->Values['BillingPeriodNext']));
|
---|
254 | $DbResult = $this->Database->query('SELECT Subject FROM Member WHERE Id='.$this->System->Modules['User']->Models['User']->User['Member']);
|
---|
255 | $Member = $DbResult->fetch_assoc();
|
---|
256 | $DbResult = $this->Database->update('Subject', 'Id='.$Member['Subject'], array('Name' => $UserOptions->Values['Name'], 'AddressStreet' => $UserOptions->Values['AddressStreet'], 'AddressTown' => $UserOptions->Values['AddressTown'], 'AddressPSC' => $UserOptions->Values['AddressPSC'], 'IC' => $UserOptions->Values['IC'], 'DIC' => $UserOptions->Values['DIC']));
|
---|
257 | $Output .= $this->SystemMessage('Nastavení', 'Nastavení domácnosti uloženo.');
|
---|
258 | $this->System->Modules['Log']->NewRecord('Member+Subject', 'Nastavení člena/subjektu změněno', $UserOptions->Values['Name']);
|
---|
259 | $DbResult = $this->Database->query('SELECT Member.Id, Member.InternetTariffNextMonth, Member.FamilyMemberCount, Member.BillingPeriodNext, Subject.Name, Subject.AddressStreet, Subject.AddressTown, Subject.AddressPSC, Subject.IC, Subject.DIC FROM Member JOIN Subject ON Subject.Id = Member.Subject WHERE Member.Id='.$this->System->Modules['User']->Models['User']->User['Member']);
|
---|
260 | $DbRow = $DbResult->fetch_array();
|
---|
261 | foreach($UserOptions->Items as $Index => $Item)
|
---|
262 | {
|
---|
263 | $UserOptions->Values[$Index] = $DbRow[$Index];
|
---|
264 | }
|
---|
265 | $UserOptions->OnSubmit = '?Action=MemberOptionsSave';
|
---|
266 | $Output .= $UserOptions->ShowEditForm();
|
---|
267 | }
|
---|
268 | }
|
---|
269 |
|
---|
270 | $Database->select_db($Config['Database']['Database']);
|
---|
271 |
|
---|
272 | $DbResult = $Database->query('SELECT * FROM `HyperlinkGroup`');
|
---|
273 | while($DbRow = $DbResult->fetch_assoc())
|
---|
274 | $HyperlinkGroups[$DbRow['Id']] = $DbRow;
|
---|
275 |
|
---|
276 |
|
---|
277 | // Show pannels
|
---|
278 | //if(IsInternetAddr()) echo('Internet'); else echo('LAN');
|
---|
279 | //$Output .= $this->InfoBar();
|
---|
280 | $Output .= '<table id="MainTable"><tr>';
|
---|
281 | $DbResult = $this->Database->select('PanelColumn', '*');
|
---|
282 | while($PanelColumn = $DbResult->fetch_assoc())
|
---|
283 | {
|
---|
284 | if($PanelColumn != '') $Width = ' width="'.$PanelColumn['Width'].'"';
|
---|
285 | else $Width = '';
|
---|
286 | $Output .= '<td valign="top"'.$Width.'>';
|
---|
287 | $DbResult2 = $Database->query('SELECT * FROM `Panel` WHERE `PanelColumn`='.$PanelColumn['Id'].' ORDER BY `Order`');
|
---|
288 | while($Panel = $DbResult2->fetch_assoc())
|
---|
289 | {
|
---|
290 | if($Panel['Module'] == 'HyperlinkGroup') $Output .= $this->ShowLinks($HyperlinkGroups[$Panel['Parameters']]);
|
---|
291 | else if($Panel['Module'] == 'OnlineHostList') $Output .= $this->Panel('Online počítače', $this->OnlineHostList());
|
---|
292 | else if($Panel['Module'] == 'UserOptions')
|
---|
293 | {
|
---|
294 | if($this->System->Modules['User']->Models['User']->User['Id'] != $this->System->Modules['User']->Models['User']->AnonymousUserId)
|
---|
295 | $Output .= $this->Panel('Přihlášený uživatel', $this->UserPanel());
|
---|
296 | } else
|
---|
297 | if(($Panel['Module'] == 'Webcam') and (array_key_exists('WebCam', $this->System->Modules)))
|
---|
298 | $Output .= $this->Panel('Kamery', $this->WebcamPanel());
|
---|
299 | else if($Panel['Module'] == 'NewsGroupList') $Output .= $this->Panel('Aktuality', $this->System->Modules['News']->Show(), array('<a href="?Action=CustomizeNews">Upravit</a>'));
|
---|
300 | }
|
---|
301 | $Output .= '</td>';
|
---|
302 | }
|
---|
303 | $Output .= '</table>';
|
---|
304 | return($Output);
|
---|
305 | }
|
---|
306 | }
|
---|
307 |
|
---|
308 | class Hyperlink extends Model
|
---|
309 | {
|
---|
310 | function __construct($Database, $System)
|
---|
311 | {
|
---|
312 | parent::__construct($Database, $System);
|
---|
313 | $this->Name = 'Hyperlink';
|
---|
314 | $this->AddPropertyString('Name');
|
---|
315 | $this->AddPropertyString('URL');
|
---|
316 | $this->AddPropertyOneToMany('Group', 'HyperlinkGroup');
|
---|
317 | $this->AddPropertyString('IconFile');
|
---|
318 | $this->AddPropertyString('PermissionModule');
|
---|
319 | $this->AddPropertyString('PermissionOperation');
|
---|
320 | $this->AddPropertyBoolean('Enable');
|
---|
321 | }
|
---|
322 | }
|
---|
323 |
|
---|
324 | class HyperlinkGroup extends Model
|
---|
325 | {
|
---|
326 | function __construct($Database, $System)
|
---|
327 | {
|
---|
328 | parent::__construct($Database, $System);
|
---|
329 | $this->Name = 'HyperlinkGroup';
|
---|
330 | $this->AddPropertyString('Name');
|
---|
331 | }
|
---|
332 | }
|
---|
333 |
|
---|
334 | class Panel extends Model
|
---|
335 | {
|
---|
336 | function __construct($Database, $System)
|
---|
337 | {
|
---|
338 | parent::__construct($Database, $System);
|
---|
339 | $this->Name = 'Panel';
|
---|
340 | $this->AddPropertyString('Module');
|
---|
341 | $this->AddPropertyString('Parameters');
|
---|
342 | $this->AddPropertyInteger('Order');
|
---|
343 | $this->AddPropertyOneToMany('PanelColumn', 'PanelColumn');
|
---|
344 | }
|
---|
345 | }
|
---|
346 |
|
---|
347 | class PanelColumn extends Model
|
---|
348 | {
|
---|
349 | function __construct($Database, $System)
|
---|
350 | {
|
---|
351 | parent::__construct($Database, $System);
|
---|
352 | $this->Name = 'PanelColumn';
|
---|
353 | $this->AddPropertyString('Width');
|
---|
354 | }
|
---|
355 | }
|
---|
356 |
|
---|
357 | class ModuleFrontPage extends Module
|
---|
358 | {
|
---|
359 | function __construct($Database, $System)
|
---|
360 | {
|
---|
361 | parent::__construct($Database, $System);
|
---|
362 | $this->Name = 'FrontPage';
|
---|
363 | $this->Version = '1.0';
|
---|
364 | $this->Creator = 'Chronos';
|
---|
365 | $this->License = 'GNU/GPL';
|
---|
366 | $this->Description = 'Main page of community network portal';
|
---|
367 | $this->Dependencies = array('User', 'News', 'TV', 'Map', 'Chat', 'WebCam');
|
---|
368 | $this->SupportedModels = array('Hyperlink', 'HyperlinkGroup', 'Panel', 'PanelColumn');
|
---|
369 | }
|
---|
370 |
|
---|
371 | function Init()
|
---|
372 | {
|
---|
373 | $this->System->Pages[''] = 'IndexPage';
|
---|
374 | }
|
---|
375 |
|
---|
376 | function Install()
|
---|
377 | {
|
---|
378 | parent::Install();
|
---|
379 | }
|
---|
380 |
|
---|
381 | function UnInstall()
|
---|
382 | {
|
---|
383 | parent::UnInstall();
|
---|
384 | }
|
---|
385 | }
|
---|
386 |
|
---|
387 | ?>
|
---|