src/pyams_default_theme/shared/common/interfaces.py
changeset 315 91448e576861
child 329 56db1bcbdd8c
equal deleted inserted replaced
314:422396b9b729 315:91448e576861
       
     1 #
       
     2 # Copyright (c) 2008-2018 Thierry Florac <tflorac AT ulthar.net>
       
     3 # All Rights Reserved.
       
     4 #
       
     5 # This software is subject to the provisions of the Zope Public License,
       
     6 # Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
       
     7 # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
       
     8 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
       
     9 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
       
    10 # FOR A PARTICULAR PURPOSE.
       
    11 #
       
    12 
       
    13 __docformat__ = 'restructuredtext'
       
    14 
       
    15 from zope.contentprovider.interfaces import IContentProvider
       
    16 
       
    17 from pyams_portal.interfaces import IPortletSettings
       
    18 
       
    19 
       
    20 class ICustomContentHeaderRenderer(IContentProvider):
       
    21     """Custom content header renderer"""
       
    22 
       
    23 
       
    24 class ISharedContentSpecificitiesPortletSettings(IPortletSettings):
       
    25     """Shared content specificities portlet settings"""
       
    26 
       
    27 
       
    28 class ICustomContentSpecificitiesRenderer(IContentProvider):
       
    29     """Custom content specificities renderer"""
       
    30 
       
    31 
       
    32 class ICustomContentSpecificitiesParagraphRenderer(IContentProvider):
       
    33     """Custom content specificities paragraph renderer"""