Commit 21aa094b authored by Alexandre Boeglin's avatar Alexandre Boeglin

added getVisibleAllowedContentTypeList method to Base, to prevent acquisition

from parent Folder.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@10904 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 951cebe5
......@@ -2015,6 +2015,13 @@ class Base( CopyContainer,
"""
return []
security.declarePublic('getVisibleAllowedContentTypeList')
def getVisibleAllowedContentTypeList(self):
"""
List portal_types which can be added in this folder / object.
"""
return []
security.declareProtected(Permissions.View, 'getBinaryData')
def getBinaryData(self):
"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment