Ruby/Rails with Rails Engine (Redmine 插件) - 添加到基本视图而不覆盖它?
我有一个插件需要在基本的Redmine 布局中添加一些东西。更改包括几个 div 和对 JavaScript 函数的调用。目前,我通过简单地覆盖基本布局视图来完成此任务。
我不喜欢这样做,因为如果我们升级Redmine,任何被覆盖的页面都不会随着更新版本而更新。有没有更优雅的方式来添加此功能?
I have a plugin that needs to add something the the base Redmine layout. The change consists of a couple divs and a call to a JavaScript function. Currently I am accomplishing this by simply overriding the base layout view.
I don't like doing this since if we upgrade Redmine any pages overridden would not update with the updated version. Is there a more elegant way to add this functionality?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要使用 Redmine Hooks 将内容添加到基本布局。
You will want to use the Redmine Hooks to add content to the base layout.