source: products/qPloneDropDownMenu/tags/0.1.10/__init__.py @ 1

Last change on this file since 1 was 1, checked in by myroslav, 18 years ago

Building directory structure

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