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

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