I'm doing a website which has lots and lots of different documents. They need them that way because they want to do all kind of filters and so on.
Since it is a really big company with a lot of structure they have a really set in stone hierarchy of content.
That way only inside some folders they want some kind of content types.
The only successful way I made it work was creating a per-content type global addable folderish content type which only allows to create the needed content type inside it and nothing else.
So in their FTI definition I have (on the global addable folderish content type):
...
<property name="allowed_content_types">
<element value="the.only.desired.contenttype" />
</property>
...
I used to see the "Restrict content types" on the "Add new..." dropdown, which would be extremely helpful in my case, since I have like 22 containers and 22 more content types, whereas with that "Restrict content types" I would only have 1 container and 22 content types.
Is there any way to do that on Dexterity?