Hello,
I have a requirement to prevent content editors from selecting certain site store elements as a target for an internal link. There are only a few of these exclusions. We currently have the FS_REFERENCE for our internal link defined to allow all elements from site store:
<FS_REFERENCE name="lt_reference" useLanguages="no">
<FILTER>
<ALLOW type="pageref"/>
</FILTER>
<LANGINFOS>
<LANGINFO lang="*" label="General Link target" description="Select internal page url here"/>
</LANGINFOS>
<PROJECTS>
<LOCAL name=".">
<SOURCES>
<FOLDER name="root" store="sitestore"/>
</SOURCES>
</LOCAL>
</PROJECTS>
</FS_REFERENCE>
It would not be practical to replace <SOURCES><FOLDER name="root" site="sitestore" /></SOURCES> with a list of all the allowed folders, as this is a long list that will grow over time. So is it possible to add a DENY or EXCLUDE or block filter on the <SOURCES> element?
With thanks,
Liam