如何在编辑/添加模式下主题表单 - 选项小部件/内容分类小部件/其他权重 drupal
到目前为止,我想出了如何主题化表单视图,但我无法在编辑/添加中修改 CCK 的表单值/选项,它只是忽略我,有时当我进行表单更改时,我什至看不到选项数组...任何人都可以提供帮助并提供一些如何主题编辑/添加 cck 内置权重/内容分类权重的方法?
till now i figured out how to theme the view of the form but im unable to modify the form values / options of CCK in edit/add its just ignores me and sometimes i cant even see the options array when i do form alter.... anyone can help and give some method how to theme edit/add cck built in weights / content taxonomy weight?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我邀请您在 hook_form_alter() 调用中使用 #theme 属性。更多信息>> http://api.drupal.org/api /drupal/developer--topics--forms_api_reference.html/6#theme
这样您就可以覆盖表单的呈现方式。
I invite you to use the #theme attribute in a hook_form_alter() call. More info on > http://api.drupal.org/api/drupal/developer--topics--forms_api_reference.html/6#theme
With that you can override how the form is rendered.