21 May
2003
21 May
'03
4:40 p.m.
Actually, I was mistaken. We've written a Zope product that extends folder. We want to add one of our objects to this extended folder. We assume that 'OFSP' in manage_addProduct would be changed to point to our new product, but are unsure what to call it. ideas? John
The API in the Zope Book is your friend.
manage_addProduct['OFSP'].manage_addFolder(id, title)
The manage_addProduct is an ObjectManager; manage_addFolder is a constructor.
The detailed form depends upon whether you are creating the object is DTML, python, or ZPT. For example, use
<dtml-call expr="manage_addProduct....">
from DTML,
container.manage_addProduct....
from Python.