--- ECHO_content/VLPExtension.py 2004/06/08 17:04:39 1.7 +++ ECHO_content/VLPExtension.py 2004/06/08 17:17:07 1.8 @@ -18,6 +18,24 @@ class VLP_essay(Folder): meta_type="VLP_essay" + manage_options = Folder.manage_options+( + {'label':'Main Config','action':'ConfigVLP_essayForm'}, + ) + + def ConfigVLP_essayForm(self): + """Form for adding""" + pt=PageTemplateFile('Products/ECHO_content/vlp/ChangeVLP_essay.zpt').__of__(self) + return pt() + + def ChangeVLP_essay(self,title,label,description,RESPONSE=None): + """Change vlp_essay""" + self.title=title + self.label=label + self.description=description + + if RESPONSE is not None: + RESPONSE.redirect('manage_main') + def __init__(self,id,title,label): """init""" self.id=id