Changeset 350 for trunk/Modules/News/subscription.php
- Timestamp:
- Jan 18, 2012, 7:44:38 AM (13 years ago)
- Location:
- trunk/Modules/News
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/News/subscription.php
r196 r350 8 8 var $ShortTitle = 'RSS kanál'; 9 9 10 function Show()11 {12 if(array_key_exists('build', $_GET))13 {14 $Select = '';15 foreach($_POST as $Index => $Item)16 {17 if(substr($Index, 0, 8) == 'category') $Select .= '-'.substr($Index, 8);18 }19 $Select = $this->System->Config['Web']['RootFolder'].'/aktuality/rss.php?select='.substr($Select, 1);20 $Output = 'Výsledný RSS kanál: <a href="'.$Select.'">'.$Select.'</a>';21 } else22 {23 $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 />'.24 '<br />Kategorie:<br />';25 $Output .= '<form action="subscription.php?build=1" method="post">';26 $DbResult = $this->Database->select('NewsCategory', '*', '1 ORDER BY Caption');27 while($Category = $DbResult->fetch_array())28 {29 $Output .= '<input type="checkbox" name="category'.$Category['Id'].'" />'.$Category['Caption'].'<br />';30 }31 $Output.= '<input type="submit" value="Sestavit " />'.32 '</form>';33 }34 return($Output);35 }36 10 } 37 11
Note:
See TracChangeset
for help on using the changeset viewer.