drupal模块开发
我在 drupal 有 2 个问题: 1.节点表中vid的含义是什么? 2.我有三个词汇: 大使馆 组织 商务 如何在我的 node-address.tpl.php 中测试节点类型地址是否属于大使馆词汇表?
i have 2 question in drupal:
1.what's means of vid in node table?
2.I have three vocabularies:
Embassy
Organisation
Bussiness
How can I test in my node-address.tpl.php if the node type address belongs Embassy vocabulary ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
"view"
$op
。将逻辑放入模板文件通常是一个坏主意。"view"
$op
in a case of D6 for this. Putting logic into a template file is usually a bad idea.vid 取决于上下文,它可以表示分类学中的词汇 ID 或节点的 reVision ID。在后一种情况下,仅当您启用了修订并且设置为保存旧版本的节点时才使用它。
vid depends on context, it can either mean Vocabulary ID in taxonamy or reVision ID for nodes. In the latter case it only is used if you have revisions enabled and it is set to save older versions of nodes.