This is the __init__.py of my product (ZID): from ZIDProduct import ZID def initialize ( context ): context.registerClass( ZID, constructors = ( ZID.manage_addZIDForm, ZID.manage_addZID, ZID.manage_add_folder ) ) I want the constructor ZID.manage_add_folder to get called at the end of the initialize function. How do I do this? -- __________________________________________________________ Sign-up for your own FREE Personalized E-mail at Mail.com http://www.mail.com/?sr=signup
Matt Ficken wrote at 2003-3-28 17:39 -0500:
This is the __init__.py of my product (ZID): ... I want the constructor ZID.manage_add_folder to get called at the end of the initialize function. How do I do this?
Maybe you look at the third party product "StartupScripts"... Dieter
participants (2)
-
Dieter Maurer -
Matt Ficken