NAVIGATION
This shows you the differences between two versions of the page.
|
english:phpwcms_replacer_rts:frontend_render:article-menu-archive:article-menu-archive-img-template [2009/10/07 10:20] Knut Heermann (flip-flop) Page moved from english:phpwcms_replacer_rts:frontend_render:article-menu-archive-img-template to english:phpwcms_replacer_rts:frontend_render:article-menu-archive:article-menu-archive-img-template |
english:phpwcms_replacer_rts:frontend_render:article-menu-archive:article-menu-archive-img-template [2018/06/03 18:09] (current) |
||
|---|---|---|---|
| Line 15: | Line 15: | ||
| * random article sort order //(tag)// | * random article sort order //(tag)// | ||
| * output archived articles // (tag)// | * output archived articles // (tag)// | ||
| + | * BBCode in titel and subtitel possible | ||
| \\ | \\ | ||
| Line 86: | Line 87: | ||
| Update: 05.09.09 KH: + counter for "How many articles are to be shown" (0 = all) | Update: 05.09.09 KH: + counter for "How many articles are to be shown" (0 = all) | ||
| Update: 16.08.09 KH: + counter for "How many of the first articles are to be hidden" (0 = nothing hidden) | Update: 16.08.09 KH: + counter for "How many of the first articles are to be hidden" (0 = nothing hidden) | ||
| + | Update: 10.12.09 KH: + BBCode in titel and subtitel possible | ||
| </code> | </code> | ||
| Line 333: | Line 335: | ||
| wordlimit = 25, | wordlimit = 25, | ||
| output archived articles (article_begin > NOW AND article_end > NOW) | output archived articles (article_begin > NOW AND article_end > NOW) | ||
| + | |||
| + | 10.12.09 KH Update: + BBCode in titel and subtitel possible | ||
| + | E.g.: [i]Title[/i] [b]Subtitle[/b] ...... | ||
| V1.4 | V1.4 | ||
| Line 794: | Line 799: | ||
| // ArticleTitle ------------------ | // ArticleTitle ------------------ | ||
| - | $alinkmenu['title'] = html_specialchars($value['article_title']); | + | $alinkmenu['title'] = render_bbcode_basics(html_specialchars($value['article_title'])); |
| // SubTitle ---------------------- | // SubTitle ---------------------- | ||
| $alinkmenu['subtitle'] = (!empty($value['article_subtitle']) AND !empty($alinkmenu['subtitle_on'])) ? | $alinkmenu['subtitle'] = (!empty($value['article_subtitle']) AND !empty($alinkmenu['subtitle_on'])) ? | ||
| - | html_specialchars($value['article_subtitle']) : ''; | + | render_bbcode_basics(html_specialchars($value['article_subtitle'])) : ''; |