我可以为内容类型(灵巧)的一个字段抑制特定的微小mce按钮吗?

时间:2014-03-31 03:11:04

标签: plone dexterity

我可以为内容类型的一个字段(灵巧模型)抑制特定的微小mce按钮吗? 也就是说,我希望人们能够格式化文本但不能插入图像。

1 个答案:

答案 0 :(得分:2)

对于原型,您可以使用此代码段。 您可以使用allow_buttonsfilter_buttons。 (see the documentation for more details

让我知道WysiwygFieldWidget是否使用相同的选项:

atapi.TextField('text',
    storage=atapi.AnnotationStorage(),
    schemata=u'details',
    required=False,
    searchable=True,
    validators=(('isTidyHtmlWithCleanup', V_REQUIRED),
          ),
    default_output_type='text/x-html-safe',
    widget=atapi.RichWidget(
        label=_(u"Descriptive Text"),
        description=_(u"Text describing the object in detail"),
        redefine_parastyles=True,
        parastyles=(
            'Heading 1|h2',
            'Heading 2|h3'),
        allow_buttons=('pasteword', 'style', 'bold', 'italic', 'bullist',),
        #filter_buttons = ('save-button', 'bg-justify', 'definitionlist',
        #                  'tabledrawer-button', 'bg-remove', 'olstyles', 'zoom'),
        rows=20, #xxx no effect: https://dev.plone.org/ticket/13113
        allow_file_upload=False,
        ),
    ),