1 try:
2 import Products.CMFPlone.migrations.v3_0
3 HAS_PLONE3 = True
4 except ImportError:
5 HAS_PLONE3 = False
6
7 import platecom.utils
8 PACKAGE = platecom.utils
9
10 PROJECTNAME = "iccommunity.core"
11 PACKAGENAME = "iccommunity.core"
12
13 DEPENDENCIES = []
14
15 from Products.CMFCore.permissions import SetOwnProperties
16 CONFIGLETS = (
17 { 'id' : 'platecom_member'
18 , 'name' : 'icCommunity'
19 , 'action' : 'string:${portal_url}/@@user-platecom-overview'
20 , 'condition' : ''
21 , 'category' : 'Member'
22 , 'visible' : 1
23 , 'appId' : PROJECTNAME
24 , 'permission' : SetOwnProperties
25 , 'imageUrl' : 'platecom_member_icon.gif'
26 },
27 )
28
29
30 GLOBALS = globals()
31