adapter¶
Register a Zope Component Architecture "adapter".
Attributes¶
factoryThe adapter factory (often a class).
providesThe interface that an adapter instance resulting from a lookup will provide.
forInterfaces or classes to be adapted, separated by spaces, e.g.
interfaces.IFoo interfaces.IBar.nameThe adapter name.
Example¶
1<adapter
2 for=".foo.IFoo .bar.IBar"
3 provides=".interfaces.IMyAdapter"
4 factory=".adapters.MyAdapter"
5 />
Alternatives¶
Use the registerAdapter method of the registry attribute of a
Configurator instance during initial application setup.
See Also¶
None.