每个字段的 Drupal 注释
我一直在寻找这个,但到目前为止没有任何运气。有没有办法在 drupal 中为每个字段而不是每个节点添加注释?如果没有可用的模块,您认为实施起来会困难吗?
我想我可以制作一个“伪内容类型”,其视图只不过是几个内容类型显示在另一个之上,这样您就可以评论其中任何一个。但我不知道如何让用户立即创建所有这些内容类型。
I have been looking all over for this, but so far without any luck. Is there a way to have comments per field instead of per node in drupal? If there are no modules available for this, do you think it would be hard to implement?
I thought I could make a "pseudo-content-type" with views that's nothing more than several content types displayed one on top of the other, so you could comment any of them. But then I don't know a way of making the user create all those content types at once.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
![扫码二维码加入Web技术交流群](/public/img/jiaqun_03.jpg)
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
内置注释模块不会对节点上的每个字段进行注释。我已经使用 drupal 近三年了,但我不知道有任何模块允许每个字段发表评论。
这是可以做到的,但需要定制模块和大量巧妙的编程才能使其工作。就难度而言,我认为具有一定 Drupal 知识的中级 PHP 开发人员应该能够解决这个问题。
The built-in comment module is not going to do comments per field on a node. I've been drupaling for almost three years and I don't know of any module that allows comments per field.
It is possible to do, but it would take a custom module and plenty of slick programming to get it to work. As far as difficulty I think an intermediate PHP developer with some knowledge of Drupal should be able to whip this out.
一种快速解决方案是使用 面板模块;在节点中形成所有可评论的内容并将它们全部放在一个面板中。这是一种快速且静态的解决方案,可能通过视图可以使其更加自定义。
A kind of quick solution would be using panel module; form all your commentable content in nodes ad put them together all into a panel. This is kind a quick and static solution, possibly with views one can make it more custom.