Ich möchte ein Viewlet auf die Ansicht mehrerer Inhaltstypen in der gleichen Python-Ei anwenden. Was ich getan habe ist, die Marker-Schnittstelle über Browser/configure.zcml AnwendungBessere Möglichkeit zum Markieren von Inhaltstypen mit einer gemeinsamen Schnittstelle
<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:browser="http://namespaces.zope.org/browser"
i18n_domain="AnnualProgramModule.content">
<include package="plone.app.contentmenu" />
<class class="..content.programyear.ProgramYear">
<implements interface=".viewlets.IAnnualProgram" />
</class>
<class class="..content.institution.Institution">
<implements interface=".viewlets.IAnnualProgram" />
</class>
</configure>
Und in meiner Grok-basierten Vorlage Ich habe:
from zope.interface import Interface
from five import grok
from plone.app.layout.viewlets.interfaces import IAboveContentTitle
from AnnualProgramModule.content.interfaces import IInstitution
grok.templatedir('templates')
class IAnnualProgram(Interface):
"""Marker Interface for AnnualProgram content types
"""
class AnnualProgramViewlet(grok.Viewlet):
grok.require('zope2.View')
grok.viewletmanager(IAboveContentTitle)
grok.context(IAnnualProgram)
class InstitutionViewlet(grok.Viewlet):
grok.require('zope2.View')
grok.context(IInstitution)
grok.viewletmanager(IAboveContentTitle)
Dies funktioniert. Aber ich bin interessiert zu wissen, ob es einen besseren Weg gibt, es zu tun.