Changes for page Featured
Last modified by Tobias Wintrich on 2025/06/04 09:20
From version 6.1
edited by Tobias Wintrich
on 2021/10/05 08:57
on 2021/10/05 08:57
Change comment:
There is no comment for this version
To version 14.1
edited by Tobias Wintrich
on 2021/10/05 09:03
on 2021/10/05 09:03
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Objects (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,5 +1,9 @@ 1 - {{Feratured}}{{/Feratured}}1 +Dieses Makro zeigt alle Artikel mit dem Tag "Featured" an. 2 2 3 += Standard = 3 3 5 +{{Feratured/}} 4 4 5 - 7 += Mit Option "Bold/ Fett gedruckt" = 8 + 9 +{{Feratured bold="true"/}}
- XWiki.WikiMacroClass[0]
-
- Macro code
-
... ... @@ -3,8 +3,16 @@ 3 3 obj.className='XWiki.TagClass' and obj.id=prop.id.id and prop.id.name='tags' and 'Featured' in 4 4 elements(prop.list) order by doc.name asc") 5 5 #set ($results= $xwiki.searchDocuments($sql)) 6 +{{html}} 7 +#if($wikimacro.parameters.bold == 'true') 8 +<div style='font-weight: bold;'> 9 +#end 6 6 #foreach ($result in $results) 7 7 #set($doc= $xwiki.getDocument($result)) 8 - {{html}}<a href="$doc.getURL()">$escapetool.xml($doc.plainTitle)</a>{{/html}}12 +<a href="$doc.getURL()">$escapetool.xml($doc.plainTitle)</a><br/> 9 9 #end 14 +#if($wikimacro.parameters.bold == 'true') 15 +</div> 16 +#end 17 +{{/html}} 10 10 {{/velocity}}