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

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

fixed interfaces

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