############################################################################## # # Copyright (c) 2005 CMFonFive Contributors. All rights reserved. # # This software is distributed under the terms of the Zope Public # License (ZPL) v2.1. See COPYING.txt for more information. # ########################################################################### """ Interfaces for the action menu integration $Id$ """ from zope.app.publisher.interfaces.browser import IBrowserMenu from zope.schema import TextLine class IActionMenu(IBrowserMenu): category = TextLine( title=u"Category", description=u"The action category of this action menu", required=True)