drupal模块开发

发布于 2024-11-04 16:30:26 字数 110 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

等数载,海棠开 2024-11-11 16:30:26
  1. 节点修订 ID
  2. 我将在 D7 中使用 hook_node_view() ,在 D6 中使用 hook_nodeapi() "view" $op 。将逻辑放入模板文件通常是一个坏主意。
  1. Node revision ID
  2. I would use hook_node_view() for D7 or hook_nodeapi() "view" $op in a case of D6 for this. Putting logic into a template file is usually a bad idea.
思念绕指尖 2024-11-11 16:30:26

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文