gpt4 book ai didi

plone - 如何将 documentactions viewlet 从一个 viewletmanager 移动到另一个?

转载 作者:行者123 更新时间:2023-12-01 23:34:30 26 4
gpt4 key购买 nike

再次提出 Plone 问题。

我安装了 Plone 4,我需要在顶部而不是底部显示文档操作图标。无法使其正常工作。有人可以帮忙吗。

最佳答案

如果您只需要移动那个 viewlet(具有相同的类和模板),首先您必须将具有相同类的 viewlet 注册到您想要的 viewletmanager(例如,plone.app.layout.viewlets。接口(interface).IAboveContentBody):

<browser:viewlet
name="plone.abovecontenttitle.documentactions"
manager="plone.app.layout.viewlets.interfaces.IAboveContentBody"
class="plone.app.layout.viewlets.content.DocumentActionsViewlet"
permission="zope2.View"
/>

然后将其添加到您的 genericsetup 配置文件中(文件 viewlets.xml):

<?xml version="1.0"?>
<object>
<order manager="plone.abovecontentbody" skinname="Plone Default">
<!-- this will place your viewlet before all the others.
you can also use a viewlet's name for a relative position -->
<viewlet name="plone.abovecontenttitle.documentactions" insert-before="*"/>
</order>

<hidden manager="plone.belowcontentbody" skinname="Plone Default">
<viewlet name="plone.abovecontenttitle.documentactions"/>
</hidden>
</object>

更多信息:

关于plone - 如何将 documentactions viewlet 从一个 viewletmanager 移动到另一个?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8230586/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com