
getpaid - issue #236
restrict PloneGetPaid portlet availability for getpaid.formgen integration
Comment by jonstahl, Aug 05, 2008:
> Payable item needs to be not the form itself, otherwise the "buyable" > portlet shows on the form. Perhaps this portlet could be suppressed? > Otherwise we have to create "stub" payable objects.
I concur. I believe this could be handled by adding an "available" property to the PloneGetPaid portlets. For example, in Products/PloneGetPaid/browser/portlets/donate.py:
class Renderer(GetPaidRenderer): ... # The 'available' property is used to determine if the portlet should # be shown. @property def available(self): # Do not display on a Form Folder # if there's a GetpaidPFGAdapter in it. if self.context.portal_type == 'FormFolder': for key in self.context.keys(): if self.context[key].portal_type == GetpaidPFGAdapter: return False else: return self.marker.providedBy(self.context)
Comment #1
Posted on Apr 12, 2009 by Grumpy LionComment deleted
Status: New
Labels:
Type-Enhancement
Priority-Medium