source: trunk/Modules/News/NewsPage.php@ 887

Last change on this file since 887 was 887, checked in by chronos, 4 years ago
  • Added: Static types added to almost all classes, methods and function. Supported by PHP 7.4.
  • Fixed: Various found code issues.
File size: 21.1 KB
Line 
1<?php
2
3class PageNews extends Page
4{
5 function __construct(System $System)
6 {
7 parent::__construct($System);
8 $this->FullTitle = 'Aktualní informace';
9 $this->ShortTitle = 'Aktuality';
10 $this->ParentClass = 'PagePortal';
11 }
12
13 function ShowView(): string
14 {
15 $Output = '';
16 if (!ModuleUser::Cast($this->System->GetModule('User'))->User->CheckPermission('News', 'Display', 'Item')) $Output .= 'Nemáte oprávnění';
17 else
18 {
19 $Category = $this->GetCategory();
20 if (array_key_exists('id', $_GET)) $Id = $_GET['id'] * 1;
21 $DbResult = $this->Database->query('SELECT `News`.*, `User`.`Name` FROM `News` '.
22 'LEFT JOIN `User` ON `User`.`Id`=`News`.`User` WHERE `News`.`Id`='.$Id);
23 if ($DbResult->num_rows > 0)
24 {
25 $Row = $DbResult->fetch_array();
26 if ($Row['Name'] == '') $Author = $Row['Author'];
27 else $Author = $Row['Name'];
28 $Output .= '<div class="Panel"><div class="Title">'.$Row['Title'].' ('.HumanDate($Row['Date']).', '.$Author.')';
29 if ((ModuleUser::Cast($this->System->GetModule('User'))->User->User['Id'] == $Row['User']) and
30 (ModuleUser::Cast($this->System->GetModule('User'))->User->CheckPermission('News', 'Insert', 'Group', $Category['Id'])))
31 {
32 $Output .= '<div class="Action">';
33 $Output .= '&nbsp;<a href="?action=del&amp;category='.$Category['Id'].'&amp;id='.$Row['Id'].'">Smazat</a>';
34 $Output .= '&nbsp;<a href="?action=edit&amp;category='.$Category['Id'].'&amp;id='.$Row['Id'].'">Upravit</a>';
35 $Output .= '</div>';
36 }
37 $Output .= '</div><div class="Content">'.ModuleNews::Cast($this->System->GetModule('News'))->ModifyContent($Row['Content']).'<br />';
38 if ($Row['Link'] != '') $Output .= '<br/><a href="'.$Row['Link'].'">Odkaz</a>';
39 if ($Row['Enclosure'] != '')
40 {
41 $Output .= '<br />Přílohy: ';
42 $Enclosures = explode(';', $Row['Enclosure']);
43 foreach ($Enclosures as $Enclosure)
44 {
45 if (file_exists(ModuleNews::Cast($this->System->GetModule('News'))->UploadedFilesFolder.$Enclosure))
46 $Output .= ' <a href="'.$this->System->Link('/'.ModuleNews::Cast($this->System->GetModule('News'))->UploadedFilesFolder.$Enclosure).'">'.$Enclosure.'</a>';
47 }
48 }
49 $Output .= '</div></div>';
50 } else $Output .= 'Položka nenalezena.';
51 }
52 return $Output;
53 }
54
55 function ShowAdd(): string
56 {
57 $User = &ModuleUser::Cast($this->System->GetModule('User'))->User;
58 $Output = '';
59 $Category = $this->GetCategory();
60 if ($User->CheckPermission('News', 'Insert', 'Group', $Category['Id']))
61 {
62 $this->System->PageHeaders[] = array($this, 'GetPageHeader');
63 $Output = '<strong>Vložení nové aktuality:</strong><br />';
64 // TODO: Static reference to dynamic category item
65 if ($Category['Id'] == 2) $Output .= 'U inzerátů uvádějte co nejvíce informací ať případný zájemce ví co kupuje. Uvádějte kontaktní údaje jako Jméno, email, tel. číslo, ICQ. Dále navrženou cenu, detajlní popis předmětu nejlépe s odkazem na stránky výrobce. Pokud váš inzerát již není platný, připište do něj např. "Prodáno" pomocí editace.';
66 $Output .= '<form enctype="multipart/form-data" action="?action=add2" method="post">'.
67 'Kategorie: <select name="category">';
68 $DbResult = $this->Database->select('NewsCategory', '*');
69 while ($DbRow = $DbResult->fetch_array())
70 {
71 if ($User->CheckPermission('News', 'Insert', 'Group', $DbRow['Id']))
72 {
73 if ($DbRow['Id'] == $Category['Id']) $Selected = ' selected="1"';
74 else $Selected = '';
75 $Output .= '<option value="'.$DbRow['Id'].'"'.$Selected.'>'.$DbRow['Caption'].'</option>';
76 }
77 }
78 $Output .= '</select><br />'.
79 'Nadpis:<br /><input type="text" size="54" name="title"><br />'.
80 'Obsah:<br /><textarea name="content" rows="20" cols="40"></textarea><br />'.
81 'Odkaz:<br /><input type="text" size="54" name="link"><br />'.
82 'Přílohy (Max. velikost souboru 1 MB):<br /><input type="hidden" name="MAX_FILE_SIZE" value="1000000">'.
83 '<input name="enclosure1" size="38" type="file"><br />'.
84 '<input name="enclosure2" size="38" type="file"><br />'.
85 '<input name="enclosure3" size="38" type="file"><br />'.
86 '<input type="submit" value="Vložit">'.
87 '</form>';
88 } else $Output .= 'Do této kategorie nemůžete vkládat aktuality!';
89 return $Output;
90 }
91
92 function ShowAdd2(): string
93 {
94 $User = &ModuleUser::Cast($this->System->GetModule('User'))->User;
95 $Output = '';
96 $RemoteAddr = GetRemoteAddress();
97 $Category = $this->GetCategory();
98 if ($User->CheckPermission('News', 'Insert', 'Group', $Category['Id']))
99 {
100 // Process uploaded file
101 // TODO: Make upload using general File class
102 $EnclosureFileNames = array('enclosure1', 'enclosure2', 'enclosure3');
103 $Enclosures = '';
104 foreach ($EnclosureFileNames as $EnclosureName)
105 if (array_key_exists($EnclosureName, $_FILES) and ($_FILES[$EnclosureName]['name'] != ''))
106 {
107 $UploadedFilePath = ModuleNews::Cast($this->System->GetModule('News'))->UploadedFilesFolder.basename($_FILES[$EnclosureName]['name']);
108 if (move_uploaded_file($_FILES[$EnclosureName]['tmp_name'], $UploadedFilePath))
109 {
110 $Output .= 'Soubor '.basename($_FILES[$EnclosureName]['name']).' byl uložen na serveru.<br />';
111 $Enclosures = $Enclosures.';'.basename($_FILES[$EnclosureName]['name']);
112 } else
113 {
114 $Output .= 'Soubor '.basename($_FILES[$EnclosureName]['name']).' se nepodařilo nahrát na server.<br />';
115 }
116 }
117 $Enclosures = substr($Enclosures, 1);
118
119 $this->Database->insert('News', array('Category' => $Category['Id'], 'Title' => $_POST['title'],
120 'Content' => $_POST['content'], 'Date' => 'NOW()', 'IP' => $RemoteAddr,
121 'Enclosure' => $Enclosures, 'Author' => $User->User['Name'],
122 'User' => $User->User['Id'], 'Link' => $_POST['link']));
123 $Output .= 'Aktualita přidána!<br />Pokud budete chtít vaši aktualitu smazat, klikněte na odkaz Smazat v seznamu všech aktualit v kategorii.<br /><br />';
124 $Output .= '<a href="?category='.$_POST['category'].'">Zpět na seznam aktualit</a>';
125 ModuleLog::Cast($this->System->GetModule('Log'))->NewRecord('News', 'Aktualita přidána', $this->Database->insert_id);
126 } else $Output .= 'Do této kategorie nemůžete vkládat aktuality!';
127 return $Output;
128 }
129
130 function GetPageHeader(): string
131 {
132 return '<script src="'.$this->System->Link('/Packages/TinyMCE/tinymce.min.js').'"></script>'.
133 "<script>tinymce.init({
134 selector: 'textarea',
135 force_p_newlines : false,
136 force_br_newlines : true,
137 convert_newlines_to_brs : false,
138 remove_linebreaks : true,
139 plugins: [
140 'advlist autolink lists link image charmap print preview anchor',
141 'searchreplace visualblocks code fullscreen',
142 'insertdatetime media table contextmenu paste code'
143 ],
144 toolbar: 'insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image',
145 language: 'cs_CZ',
146});</script>";
147 }
148
149 function ShowEdit(): string
150 {
151 $User = &ModuleUser::Cast($this->System->GetModule('User'))->User;
152 $Output = '';
153 $Category = $this->GetCategory();
154 if ($User->CheckPermission('News', 'Insert', 'Group', $Category['Id']))
155 {
156 $DbResult = $this->Database->query('SELECT * FROM `News` WHERE `Id`='.$_GET['id']);
157 $Row = $DbResult->fetch_array();
158 if (($User->User['Id'] == $Row['User']))
159 {
160 $this->System->PageHeaders[] = array($this, 'GetPageHeader');
161 $Output .= '<strong>Editace aktuality v kategorii '.$Category['Caption'].':</strong><br />';
162 $Output .= '<form action="?action=update" method="post">'.
163 '<input type="hidden" value="'.$_GET['id'].'" name="id">'.
164 'Nadpis:<br /><input type="text" size="54" name="title" value="'.$Row['Title'].'"><br />'.
165 'Obsah:<br /><textarea name="content" rows="20" cols="40" style="width: 50%">'.$Row['Content'].'</textarea><br />'.
166 'Odkaz:<br /><input type="text" size="54" name="link" value="'.$Row['Link'].'"><br />'.
167 '<input type="hidden" name="category" value="'.$Category['Id'].'"><br />'.
168 '<input type="submit" value="Uložit">'.
169 '</form>';
170 } else $Output .= 'Nepovolená operace!';
171 } else $Output .= 'Do této kategorie nemůžete vkládat aktuality!';
172 return $Output;
173 }
174
175 function ShowUpdate(): string
176 {
177 $User = &ModuleUser::Cast($this->System->GetModule('User'))->User;
178 $Output = '';
179 $RemoteAddr = GetRemoteAddress();
180 $Category = $this->GetCategory();
181 if ($User->CheckPermission('News', 'Insert', 'Group', $Category['Id']))
182 {
183 $_POST['id'] = $_POST['id'] * 1;
184 $DbResult = $this->Database->select('News', '*', '`Id`='.$_POST['id']);
185 if ($DbResult->num_rows > 0)
186 {
187 $Row = $DbResult->fetch_array();
188 if ($User->User['Id'] == $Row['User'])
189 {
190 $this->Database->update('News', 'Id='.$_POST['id'], array('Title' => $_POST['title'],
191 'Content' => $_POST['content'], 'Link' => $_POST['link']));
192 $Output .= 'Aktualita uložena!<br />';
193 $Output .= '<a href="?category='.$Category['Id'].'">Zpět na seznam aktualit</a>';
194 } else $Output .= 'Nelze měnit cizí aktualitu!<br />';
195 } else $Output .= 'ID nenalezeno!';
196 } else $Output .= 'Do této kategorie nemůžete vkládat aktuality!';
197 return $Output;
198 }
199
200 function ShowDelete(): string
201 {
202 $User = &ModuleUser::Cast($this->System->GetModule('User'))->User;
203 $Output = '';
204 $Category = $this->GetCategory();
205 if ($User->CheckPermission('News', 'Insert', 'Group', $Category['Id']))
206 {
207 $DbResult = $this->Database->query('SELECT * FROM `News` WHERE `Id`='.$_GET['id']);
208 $Row = $DbResult->fetch_array();
209 if ($User->User['Id'] == $Row['User'])
210 {
211 // TODO: Make upload using general File class
212 if ($Row['Enclosure'] != '')
213 {
214 $Output .= '<br />Přílohy: ';
215 $Enclosures = explode(';', $Row['Enclosure']);
216 foreach ($Enclosures as $Enclosure)
217 {
218 if (file_exists(ModuleNews::Cast($this->System->GetModule('News'))->UploadedFilesFolder.$Enclosure)) unlink(ModuleNews::Cast($this->System->GetModule('News'))->UploadedFilesFolder.$Enclosure);
219 }
220 }
221 $this->Database->query('DELETE FROM `News` WHERE `Id`='.$_GET['id']);
222 $Output .= 'Aktualita smazána!<br /><a href="?category='.$Category['Id'].'">Zpět na seznam aktualit</a>';
223 } else $Output .= 'Nemáte oprávnění.';
224 } else $Output .= 'Do této kategorie nemůžete vkládat aktuality!';
225 return $Output;
226 }
227
228 function ShowList(): string
229 {
230 $User = &ModuleUser::Cast($this->System->GetModule('User'))->User;
231 $Output = '';
232 $Category = $this->GetCategory();
233 if ($User->CheckPermission('News', 'Display', 'Group', $Category['Id']))
234 {
235 $PerPage = 20;
236 $DbResult = $this->Database->select('News', 'COUNT(*)', ' `Category`='.$Category['Id']);
237 $RowTotal = $DbResult->fetch_array();
238 $PageMax = $RowTotal[0];
239 if (array_key_exists('page', $_GET)) $Page = $_GET['page'];
240 else $Page = 0; //round($PageMax/$PerPage);
241 $Output .= '<strong>Seznam aktualit kategorie '.$Category['Caption'].':</strong><div style="font-size: small;">';
242 $Output .= PagesList('?category='.$Category['Id'].'&amp;page=', $Page, $PageMax, $PerPage);
243
244 $DbResult = $this->Database->query('SELECT `News`.*, `User`.`Name` FROM `News` '.
245 'LEFT JOIN `User` ON `User`.`Id`=`News`.`User` WHERE `Category`='.$Category['Id'].' ORDER BY `News`.`Id` DESC LIMIT '.($Page * $PerPage).','.$PerPage);
246 while ($Row = $DbResult->fetch_array())
247 {
248 if ($Row['Name'] == '') $Author = $Row['Author'];
249 else $Author = $Row['Name'];
250 $Output .= '<div class="Panel"><div class="Title"><a href="?action=view&amp;id='.$Row['Id'].'">'.$Row['Title'].'</a> ('.HumanDate($Row['Date']).', '.$Author.')';
251 if (($User->User['Id'] == $Row['User']) and ($User->CheckPermission('News', 'Insert', 'Group', $Category['Id'])))
252 {
253 $Output .= '<div class="Action">';
254 $Output .= '&nbsp;<a href="?action=del&amp;category='.$Category['Id'].'&amp;id='.$Row['Id'].'">Smazat</a>';
255 $Output .= '&nbsp;<a href="?action=edit&amp;category='.$Category['Id'].'&amp;id='.$Row['Id'].'">Upravit</a>';
256 $Output .= '</div>';
257 }
258 $Output .= '</div><div class="Content">'.ModuleNews::Cast($this->System->GetModule('News'))->ModifyContent($Row['Content']).'<br />';
259 if ($Row['Link'] != '') $Output .= '<br/><a href="'.$Row['Link'].'">Odkaz</a>';
260 if ($Row['Enclosure'] != '')
261 {
262 $Output .= '<br />Přílohy: ';
263 $Enclosures = explode(';', $Row['Enclosure']);
264 foreach ($Enclosures as $Enclosure)
265 {
266 if (file_exists(ModuleNews::Cast($this->System->GetModule('News'))->UploadedFilesFolder.$Enclosure))
267 $Output .= ' <a href="'.$this->System->Link('/'.ModuleNews::Cast($this->System->GetModule('News'))->UploadedFilesFolder.$Enclosure).'">'.$Enclosure.'</a>';
268 }
269 }
270 $Output .= '</div></div>';
271 }
272 $Output .= PagesList('?category='.$Category['Id'].'&amp;page=', $Page, $PageMax, $PerPage);
273 $Output .= '</div>';
274 } else $Output .= 'Nemáte oprávnění.';
275 return $Output;
276 }
277
278 function GetCategory(): array
279 {
280 $Category = array('Id' => 1); // Default category
281 if (array_key_exists('category', $_GET)) $Category['Id'] = $_GET['category'] * 1;
282 if (array_key_exists('category', $_POST)) $Category['Id'] = $_POST['category'] * 1;
283 //if (is_null($Category)) throw new Exception('Kategorie neurčena');
284 else
285 {
286 $DbResult = $this->Database->select('NewsCategory', '*', '`Id`='.$Category['Id'].' ORDER BY `Sequence`');
287 if ($DbResult->num_rows > 0) $Category = $DbResult->fetch_array();
288 else $Category = array('Id' => 0); //throw new Exception('Kategorie nenalezena');
289 }
290 return $Category;
291 }
292
293 function Show(): string
294 {
295 $Output = '';
296 if (array_key_exists('action',$_GET)) $Action = $_GET['action'];
297 else $Action = '';
298 if ($Action == 'view') $Output .= $this->ShowView();
299 else if ($Action == 'add') $Output .= $this->ShowAdd();
300 else if ($Action == 'add2') $Output .= $this->ShowAdd2();
301 else if ($Action == 'edit') $Output .= $this->ShowEdit();
302 else if ($Action == 'update') $Output .= $this->ShowUpdate();
303 else if ($Action == 'del') $Output .= $this->ShowDelete();
304 else $Output .= $this->ShowList();
305 return $Output;
306 }
307}
308
309class PageNewsUpdate extends Page
310{
311 function __construct(System $System)
312 {
313 parent::__construct($System);
314 $this->FullTitle = 'Aktualizace aktualit';
315 $this->ShortTitle = 'Aktualizace aktualit';
316 $this->ParentClass = 'PageNews';
317 }
318
319 function Show(): string
320 {
321 $NewsSources = new NewsSources();
322 $NewsSources->Database = $this->Database;
323 if (array_key_exists('i', $_GET)) $Output = $NewsSources->Parse($_GET['i']);
324 else $Output = $NewsSources->Parse();
325 return $Output;
326 }
327}
328
329class PageNewsSubscription extends Page
330{
331 function __construct(System $System)
332 {
333 parent::__construct($System);
334 $this->FullTitle = 'Odběry aktualit';
335 $this->ShortTitle = 'Odběry aktualit';
336 $this->ParentClass = 'PageNews';
337 }
338
339 function Show(): string
340 {
341 if (array_key_exists('build', $_GET))
342 {
343 $Select = '';
344 foreach ($_POST as $Index => $Item)
345 {
346 if (substr($Index, 0, 8) == 'category') $Select .= '-'.substr($Index, 8);
347 }
348 $Select = $this->System->Config['Web']['RootFolder'].'/aktuality/rss/?select='.substr($Select, 1);
349 $Output = 'Výsledný RSS kanál: <a href="'.$Select.'">'.$Select.'</a>';
350 } else
351 {
352 $Output = 'Vytvořte si vlastní RSS kanál, díky kterému budete moci automaticky sledovat novinky pomocí vaší RSS čtečky. Informace o technologii RSS a programech pro čtení kanálů najdete např. <a href="http://www.lupa.cz/clanky/prehled-rss-ctecek/">zde</a><br />'.
353 '<br />Kategorie:<br />';
354 $Output .= '<form action="?build=1" method="post">';
355 $DbResult = $this->Database->select('NewsCategory', '*', '1 ORDER BY `Caption`');
356 while ($Category = $DbResult->fetch_array())
357 {
358 $Output .= '<input type="checkbox" name="category'.$Category['Id'].'" />'.$Category['Caption'].'<br />';
359 }
360 $Output.= '<input type="submit" value="Sestavit"/>'.
361 '</form>';
362 }
363 return $Output;
364 }
365}
366
367class PageNewsRss extends Page
368{
369 function __construct(System $System)
370 {
371 parent::__construct($System);
372 $this->FullTitle = 'RSS kanál aktualit';
373 $this->ShortTitle = 'Aktuality RSS';
374 $this->ParentClass = 'PageNews';
375 }
376
377 function Show(): string
378 {
379 $this->ClearPage = true;
380 $this->FormatHTML = false;
381 Header('Content-Type: text/xml');
382
383 $NewsCount = 15;
384
385 $Items = array();
386 $Category = '';
387 $CategoryOption = '';
388 $CategoryOptionURL = '';
389 $CategoryName = '';
390
391 // Prepare WHERE condition
392 if (array_key_exists('select', $_GET))
393 {
394 $Where = '';
395 $Parts = explode('-', $_GET['select']);
396 foreach ($Parts as $Part)
397 {
398 $Where .= 'OR (`Category`='.($Part * 1).')';
399 }
400 $Where = substr($Where, 2);
401 } else $Where = 1;
402
403 // Get category names
404 $Categories = array();
405 $DbResult = $this->Database->select('NewsCategory', '*');
406 while ($Category = $DbResult->fetch_array())
407 {
408 $Categories[$Category['Id']] = $Category['Caption'];
409 }
410
411 // Update news from discussion forum
412 /*
413 $ForumCategory = 4;
414 $Database->select_db('forum');
415 $DbResult = $Database->query('SELECT posts.post_time, posts_text.post_subject, posts_text.post_text, users.username, topics.topic_title FROM posts JOIN posts_text ON posts.post_id = posts_text.post_id JOIN users ON users.user_id = posts.poster_id JOIN topics ON topics.topic_id= posts.topic_id ORDER BY post_time DESC LIMIT '.$NewsCount);
416 $Index = 0;
417 //echo(DB_NumRows().',');
418 while ($Row = $DbResult->fetch_array())
419 {
420 $Row['post_text'] = StrTr($Row['post_text'], "\x8A\x8D\x8E\x9A\x9D\x9E", "\xA9\xAB\xAE\xB9\xBB\xBE");
421 $Row['post_text'] = str_replace("\n","<br>", $Row['post_text']);
422 $Row['post_subject'] = StrTr($Row['post_subject'], "\x8A\x8D\x8E\x9A\x9D\x9E", "\xA9\xAB\xAE\xB9\xBB\xBE");
423 $Row['topic_title'] = StrTr($Row['topic_title'], "\x8A\x8D\x8E\x9A\x9D\x9E", "\xA9\xAB\xAE\xB9\xBB\xBE");
424 $Index = $Index + 1;
425
426 $Title = $Row['topic_title'].'-'.$Row['post_subject'];
427 $Content = $Row['post_text'];
428 $Date = date('Y-m-d H:i:s', $Row['post_time']);
429 $Author = $Row['username'];
430 $Database->select_db('is');
431 //echo('category='.$ForumCategory.' AND title="'.addslashes($Title).'" AND content="'.addslashes($Content).'" AND author="'.addslashes($Author).'" AND date="'.$Date.'"');
432 $DbResult2 = $Database->select('news', '*', 'category='.$ForumCategory.' AND title="'.addslashes($Title).'" AND content="'.addslashes($Content).'" AND author="'.addslashes($Author).'" AND date="'.$Date.'"');
433 if ($DbResult2->num_rows == 0) //echo('.'); else echo('x');
434 $Database->insert('news', array('category' => $ForumCategory, 'title' => $Title, 'content' => $Content, 'author' => $Author, 'date' => $Date));
435 //echo($Date);
436 $Database->select_db('forum');
437 }
438 $Database->select_db('is');
439 */
440
441 // Get news from database by selected categories
442 $DbResult = $this->Database->query('SELECT *, UNIX_TIMESTAMP(`Date`) AS `UnixTime` FROM `News` LEFT JOIN `User` ON `User`.`Id`=`News`.`User` WHERE '.$Where.' ORDER BY News.Date DESC LIMIT 0,'.$NewsCount);
443 while ($Row = $DbResult->fetch_assoc())
444 {
445 $EnclosuresText = '';
446 if ($Row['Enclosure'] != '')
447 {
448 $EnclosuresText .= '<br />Přílohy: ';
449 $Enclosures = explode(';', $Row['Enclosure']);
450 foreach ($Enclosures as $Enclosure)
451 {
452 if (file_exists(ModuleNews::Cast($this->System->GetModule('News'))->UploadedFilesFolder.$Enclosure))
453 $EnclosuresText .= ' <a href="'.$this->System->Link('/aktuality/'.ModuleNews::Cast($this->System->GetModule('News'))->UploadedFilesFolder.$Enclosure).'">'.$Enclosure.'</a>';
454 }
455 }
456 if ($Row['Name'] == '') $Author = $Row['Author'];
457 else $Author = $Row['Name'];
458 $Items[] = array(
459 'Title' => $Categories[$Row['Category']].' - '.$Row['Title'],
460 'Link' => 'http://'.$this->System->Config['Web']['Host'].'/aktuality/?category='.$Row['Category'],
461 'Description' => $Row['Content'].' ('.$Author.')'.$EnclosuresText,
462 'Time' => $Row['UnixTime'],
463 );
464 }
465
466 $RSS = new RSS();
467 $RSS->Title = $this->System->Config['Web']['Title'].' - Aktuality';
468 $RSS->Link = 'http://'.$this->System->Config['Web']['Host'].'/';
469 $RSS->Description = 'Aktuality '.$this->System->Config['Web']['Description'];
470 $RSS->WebmasterEmail = $this->System->Config['Web']['AdminEmail'];
471 $RSS->Items = $Items;
472 return $RSS->Generate();
473 }
474}
Note: See TracBrowser for help on using the repository browser.