source: products/qPloneDropDownMenu/trunk/__init__.py @ 1591

Last change on this file since 1591 was 372, checked in by chervol, 18 years ago

fixed interfaces

File size: 427 bytes
Line 
1from AccessControl import allow_module
2from Products.CMFCore.utils import ToolInit
3
4from Products.qPloneDropDownMenu.DropDownMenuTool import DropDownMenuTool
5from Products.qPloneDropDownMenu.config import PROJECT_NAME
6
7allow_module('Products.qPloneDropDownMenu.utils')
8
9tools = (DropDownMenuTool,)
10 
11def initialize(context):
12    ToolInit(PROJECT_NAME,
13             tools=tools,
14             icon='tool.gif').initialize(context)
Note: See TracBrowser for help on using the repository browser.