Hello,
I am trying to apply a custom module (to hide some docLib Actions) only to certains Sites. For that, I am using the "site.module.evaluators", but I cannot figure out how to do it for more than one site.
The evaluator I am using looks like:
<evaluator type="site.module.evaluator">
<params>
<sites>SiteA,SiteB,SiteC</sites>
</params>
</evaluator>
But this way does not work. However, if I just put one site, it works.
Does anyone know how to pass serveral Sites to the evaluator?
I spent some time looking online but could not find any answer
Best regards!
Solved! Go to Solution.
The condition is evaluated as a regular expression:
So you need to add somethig like:
<evaluator type="site.module.evaluator"> <params> <sites>SiteA|SiteB|SiteC</sites> </params> </evaluator>
The condition is evaluated as a regular expression:
So you need to add somethig like:
<evaluator type="site.module.evaluator"> <params> <sites>SiteA|SiteB|SiteC</sites> </params> </evaluator>
Thank you so much Angel.
Ask for and offer help to other Alfresco Content Services Users and members of the Alfresco team.
Related links:
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.