Drupal 默认视图与 Views contrib 模块
Drupal 有一些内置视图,无需 Views
contrib 模块即可工作。我们甚至无法管理或改变它们。 frontpage
和 taxonomy_term
是此类视图的两个示例。它们被称为默认视图。
我们如何通过模块开发生成自己的视图?
我的另一个问题是关于 Views contrib 模块。
views
模块如何增强 drupal 关于视图的功能?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Drupal 中的内置列表页面(如列出所有节点的列表页面)严格来说不是“视图”,因为它们不是由视图模块提供支持的。安装视图模块后,您可以将内置列表页面替换为您自己的视图,或添加用于管理任务的自定义视图。
如果您下载 admin_menu 模块 的版本 3(目前处于 alpha 版本),您还将获得 admin_views 模块,它可以用“真实”视图替换所有内置列表。
如果您想了解如何在模块中包含默认视图,请参阅此 博客文章。
Built-in list pages in Drupal (like the one listing all nodes) are strictly speaking not "views", because they are not powered by the Views module. After installing the Views module, you can replace the built-in list pages with your own views or add custom views for administrative tasks.
If you download version 3 (in alpha at the moment) of the admin_menu module you will also get the admin_views module, which can replace all built-in lists with 'real' views.
If you want to learn how to include a default view in your module, see this blog post.