AllowedTypes for LinkItem collection
The other day I heard a discussion about a possible requirement for only allowing specific pages in a LinkItem collection. My first thought was to use a ContentArea property in combination with the AllowedTypes attribute but for some reason the possiblity to have external links was needed.
I googled a bit but I only found a post where a custom validation class handled validation of max number of items in a LinkItemCollection, you can read Allan Thraens blog post here.
It seemed like a clean and simple approach so I decided to do a variant that is similiar to AllowedTypes for ContentArea and ContentReference properties.
My solution is a simple validation attribute that takes an array of types that should be allowed to add to a LinkItemCollection property. The attribute ignores linkitems that are not Episerver content.If an Epierver content (page,image) is added to the LinkItemCollection and the underlying type is not inte the allowed types array a error message is displayed and publishing of the page is blocked.
You can find the coder over at my gist.
Good one, I was thinking to implement this requirement. :)
One of my team mate had this requirement.
Thanks for simplifying that for us.
Thanks! Glad it could be of use.
Very useful. I changed the code to support inherited types, see my gist.