如何将页面面包屑添加到 Confluence 插件中的操作?

发布于 2024-09-26 09:08:35 字数 338 浏览 6 评论 0原文

我正在为 Confluence 编写一个插件,但没有太多关于在速度虚拟机文件中可以使用什么的文档。我可以添加来自仪表板的基本面包屑 -> ActionName 但我想做一些类似于页面编辑的事情,您可以在其中获得整页面包屑,后跟操作名称。

这是我现在正在使用的:

#applyDecorator("root")
    #decoratorParam("helper" $action.Helper)
    #decoratorParam("mode" "view")
    #decoratorParam("context" "page")

任何建议或链接将不胜感激。

I'm writing a plugin for Confluence and there isn't much documentation on what you can use in velocity vm files. I'm able to add a base breadcrumb that goes from Dashboard -> ActionName but I want to to do something similar to page edits where you get the full page breadcrumb followed by the action name.

Here's what I'm using now:

#applyDecorator("root")
    #decoratorParam("helper" $action.Helper)
    #decoratorParam("mode" "view")
    #decoratorParam("context" "page")

Any suggestions or links would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

魔法少女 2024-10-03 09:08:35

您需要让您的操作实现 PageAware。然后,我将来源页面的页面 ID 传递给操作,使用 PageManager 根据 ID 获取页面,并从 PageAware 界面设置页面。 vm 文件中的上述代码将生成正确的面包屑。

You need to have your action implement PageAware. I then passed the Page ID of the page I was coming from to the action, used PageManager to get the page based on ID and set the Page from the PageAware interface. The above code in the vm file will generate correct breadcrumbs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文