--- ECHO_content/__init__.py 2004/05/14 09:53:20 1.9 +++ ECHO_content/__init__.py 2004/05/27 09:31:25 1.11 @@ -1,5 +1,6 @@ import ECHO_collection import ECHO_Nav +import VLPExtension def initialize(context): """initialize OSAS""" @@ -109,3 +110,22 @@ def initialize(context): ) ) + + context.registerClass( + VLPExtension.VLP_resource, + constructors = ( + VLPExtension.manage_addVLP_resourceForm, + VLPExtension.manage_addVLP_resource + ), + icon = 'ECHO_ressource.gif' + ) + + context.registerClass( + VLPExtension.VLP_collection, + constructors = ( + VLPExtension.manage_addVLP_collectionForm, + VLPExtension.manage_addVLP_collection + ), + icon = 'ECHO_collection.gif' + ) +