Drupal 定义节点网格数据
我需要定义一个 10*10 的节点网格。网格中的每个单元必须恰好包含一个节点。
新创建的节点被插入到下一个可用单元中,并且新节点不能进一步占据已占用的单元。
这就是我想要实现的场景,但我需要如何实现的建议。
I need to define a 10*10 grid of nodes. Each cell in the grid has to contain exactly one node.
A newly created node gets inserted into the next available cell and a new node can not be step to occupy an occupied cell.
That's the scenario I am trying to accomplish but I need suggestions how I do it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的节点当前如何显示?您使用的 Drupal 版本是什么?
如果您使用的是 Views 7.x-3.x,则该模块捆绑了一个名为“Grid”的样式插件。编辑视图时,单击格式并选择网格。单击“应用”,然后在下一页中将列数设置为 10。
最后,您可能想要禁用“视图”分页器,但将结果限制为 100。
How are your nodes currently being displayed? What version of Drupal are you using?
If you are using Views 7.x-3.x, there's a style plugin called "Grid" bundled with the module. When editing your view, click on Format and select Grid. Click "Apply", and on the following page set the number of columns to 10.
Finally, you probably want to disable the Views pager, but limit the results to 100.