[gen] First version of a Ogone Appy plug-in.

This commit is contained in:
Gaetan Delannay 2012-07-26 17:22:22 +02:00
parent 178059ba1b
commit b2e1e8c780
10 changed files with 197 additions and 11 deletions

View file

@ -1594,4 +1594,9 @@ class BaseMixin:
if not parent: # Is propably being created through code
return False
return parent.getId() == 'temp_folder'
def onProcess(self):
'''This method is a general hook for transfering processing of a request
to a given field, whose name must be in the request.'''
return self.getAppyType(self.REQUEST['name']).process(self)
# ------------------------------------------------------------------------------