自定义模板文件中的 drupal 6 cck 格式
我正在为带有一些 cck 字段的节点类型创建自定义 .tpl 文件。 在 de cck 模块中,我为字段选择了整数格式样式。 现在在 tpl 中,我从 $node 对象加载字段,但它没有格式(9999 而不是 9.999)。
在 $node 对象中,您有一个项目“#theme”和“#formatter”,我想我需要其中之一,但是如何呢? 我尝试了 theme() 函数,但它没有显示任何内容。
i'm creating a custom .tpl file for a node type with some cck fields.
In de cck module i selected a integer format style for a field.
Now in the tpl i load the field from the $node object but it's without format (9999 in stead of 9.999).
In the $node object you have an item '#theme' and '#formatter', i guess i need one of these but how?
i tried the theme() function but then it doesn't display anything.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我用过 content_view($node); “渲染”所有值。
将其放在页面顶部给了我一个包含所有正确(主题)值的数组。
i've used content_view($node); to 'render' all the values.
Putting this on the top of the page gave me an array with all the right (themed) values.