Wiki source code of FAQ
Version 12.2 by teamwire001 on 2025/04/04 15:36
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | On this page, we've compiled answers to our most frequently asked questions, covering everything from product and service information to troubleshooting and more. Our goal is to provide you with quick and easy access to the information you need. | ||
2 | |||
3 | |||
4 | {{velocity}} | ||
5 | #set ($usersGroup = $xwiki.getUser($xcontext.user).isUserInGroup('XWiki.00-user')) | ||
6 | #set ($customerGroup = $xwiki.getUser($xcontext.user).isUserInGroup('XWiki.01-customer')) | ||
7 | #set ($onpremiseGroup = $xwiki.getUser($xcontext.user).isUserInGroup('XWiki.02-onpremise')) | ||
8 | #set ($partnerGroup = $xwiki.getUser($xcontext.user).isUserInGroup('XWiki.03-partner')) | ||
9 | #set ($marketingGroup = $xwiki.getUser($xcontext.user).isUserInGroup('XWiki.04-marketing')) | ||
10 | #set ($teamwireGroup = $xwiki.getUser($xcontext.user).isUserInGroup('XWiki.teamwire')) | ||
11 | #set($firstName = | ||
12 | $xwiki.getDocument($context.user).getObject('XWiki.XWikiUsers').getProperty('first_name').getValue()) | ||
13 | #set($lastName | ||
14 | = $xwiki.getDocument($context.user).getObject('XWiki.XWikiUsers').getProperty('last_name').getValue()) | ||
15 | |||
16 | ## ------------------- | ||
17 | ## start Guest and 00-user | ||
18 | ## ------------------- | ||
19 | #if($isGuest or ($xwiki.getUser($xcontext.user).isUserInGroup('XWiki.00-user'))) | ||
20 | |||
21 | {{documentTree root="document:xwiki:Public.FAQ.WebHome" compact="true" showTranslations="false" showAttachments="false" limit="999" exclusions="document:xwiki:Public.FAQ.WebPreferences,document:xwiki:Public.FAQ.Code.WebHome" sortDocumentsBy="creationDate:asc"/}} | ||
22 | |||
23 | #end | ||
24 | ## end Guest and 00-user and 01-customer view | ||
25 | ## ------------------- | ||
26 | ## start 01-customer view | ||
27 | ## ------------------- | ||
28 | #if($xwiki.getUser($xcontext.user).isUserInGroup('XWiki.01-customer') or $xwiki.getUser($xcontext.user).isUserInGroup('XWiki.teamwire')) | ||
29 | |||
30 | {{documentTree root="document:xwiki:Public.FAQ.WebHome" compact="true" showTranslations="false" showAttachments="false" limit="999" exclusions="document:xwiki:Public.FAQ.WebPreferences,document:xwiki:Public.FAQ.Code.WebHome" sortDocumentsBy="creationDate:asc"/}} | ||
31 | |||
32 | {{documentTree root="document:xwiki:Customer.FAQ.WebHome" compact="true" showTranslations="false" showAttachments="false" limit="999" exclusions="document:xwiki:Customer.FAQ.WebPreferences,document:xwiki:Customer.FAQ.Code.WebHome" sortDocumentsBy="creationDate:asc"/}} | ||
33 | #end | ||
34 | ## end Guest and 00-user and 01-customer view | ||
35 | ## ------------------- | ||
36 | ## start 02-onpremise view | ||
37 | ## ------------------- | ||
38 | #if($xwiki.getUser($xcontext.user).isUserInGroup('XWiki.02-onpremise') or $xwiki.getUser($xcontext.user).isUserInGroup('XWiki.teamwire')) | ||
39 | |||
40 | {{documentTree root="document:xwiki:OnPremise.FAQ.WebHome" compact="true" showTranslations="false" showAttachments="false" limit="999" exclusions="document:xwiki:OnPremise.FAQ.WebPreferences,document:xwiki:OnPremise.FAQ.Code.WebHome" sortDocumentsBy="creationDate:asc"/}} | ||
41 | #end | ||
42 | ## end 02-onpremise view | ||
43 | ## ------------------- | ||
44 | ## start 03-partner view | ||
45 | ## ------------------- | ||
46 | #if($xwiki.getUser($xcontext.user).isUserInGroup('XWiki.03-partner') or $xwiki.getUser($xcontext.user).isUserInGroup('XWiki.teamwire')) | ||
47 | |||
48 | {{documentTree root="document:xwiki:Partner.FAQ.WebHome" compact="true" showTranslations="false" showAttachments="false" limit="999" exclusions="document:xwiki:Partner.FAQ.WebPreferences,document:xwiki:Partner.FAQ.Code.WebHome" sortDocumentsBy="creationDate:asc"/}} | ||
49 | |||
50 | #end | ||
51 | ## end 03-partner view | ||
52 | {{/velocity}} |