如何将页面面包屑添加到 Confluence 插件中的操作?
我正在为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要让您的操作实现
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, usedPageManager
to get the page based on ID and set the Page from thePageAware
interface. The above code in the vm file will generate correct breadcrumbs.