Drupal:在编辑内容页面中折叠 CCK 字段?
我可以折叠 Drupal 中编辑内容页面中的字段吗?
例如,页面底部折叠了修订信息、URL 路径设置、创作信息等。
我也希望 CCK 字段具有此功能。
谢谢
can I collapse the field in my edit-content page in Drupal ?
For example, at the bottom of the page Revision Information, URL Path Settings, Authoring Information etc are collapsed.
I would like to have this functionality for the CCK Fields as well.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
hook_form_alter
来完成此操作,方法是将字段放入您可折叠的字段集中。You can do this with
hook_form_alter
by putting the fields into a fieldset the you make collapsible.您还可以使用 CCK 字段组模块在创建新字段的同一界面中创建字段组。进入字段组设置页面,使其默认折叠。然后将字段拖放到给定的字段组下。
Fieldgroup是CCK项目的一部分,只需在模块页面中将其打开即可。
使用 hook_form_alter() 是一种更简洁的解决方案,但技术上有点困难。
You can also use the CCK Fieldgroup module to create a fieldgroup in the same interface you create new fields. Go to the fieldgroup settings page to make it collapsed by default. Then drag-n-drop fields to be under a given fieldgroup.
Fieldgroup is part of the CCK project, just turn it on in the modules page.
Using
hook_form_alter()
is a cleaner solution but technically a bit more difficult.