|
Revision 463
(checked in by piv, 2 years ago)
|
added ajax congiglet with necessary functionality (but not sufficient)
|
| Line | |
|---|
| 1 |
from Products.CMFCore import utils |
|---|
| 2 |
from Products.CMFCore.DirectoryView import registerDirectory |
|---|
| 3 |
|
|---|
| 4 |
from Products.qPloneDropDownMenu.DropDownMenuTool import DropDownMenuTool |
|---|
| 5 |
from Products.qPloneDropDownMenu.config import * |
|---|
| 6 |
|
|---|
| 7 |
registerDirectory(SKINS_DIR, GLOBALS) |
|---|
| 8 |
|
|---|
| 9 |
tools = (DropDownMenuTool,) |
|---|
| 10 |
|
|---|
| 11 |
def initialize(context): |
|---|
| 12 |
utils.ToolInit(PROJECTNAME, |
|---|
| 13 |
tools = tools, |
|---|
| 14 |
product_name = PROJECTNAME, |
|---|
| 15 |
icon='tool.gif' |
|---|
| 16 |
).initialize(context) |
|---|