Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以在 Drupal 的编辑内容页面中折叠该字段吗?
例如,在页面底部的修订信息、URL 路径设置、创作信息等被折叠。
我也想为 CCK 字段提供此功能。
谢谢
您可以hook_form_alter通过将字段放入可折叠的字段集中来做到这一点。
hook_form_alter
您还可以使用 CCK 字段组模块在创建新字段的同一界面中创建字段组。转到字段组设置页面,使其默认折叠。然后将字段拖放到给定的字段组下。
Fieldgroup 是 CCK 项目的一部分,只需在模块页面中打开它即可。
使用hook_form_alter()是一种更清洁的解决方案,但在技术上有点困难。
hook_form_alter()