source: products/qPloneDropDownMenu/branches/0.2/__init__.py @ 1

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

Building directory structure

File size: 502 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 *
6
7registerDirectory(SKINS_DIR, GLOBALS)
8
9tools = (DropDownMenuTool,)
10
11def initialize(context):
12    utils.ToolInit(PROJECTNAME,
13                   tools = tools,
14                   product_name = PROJECTNAME,
15                   icon='tool.gif'
16                   ).initialize(context)
Note: See TracBrowser for help on using the repository browser.