2

我正在使用 Drupal 7 开发一个站点。我从访问者那里收集一些数据并将它们存储在 drupal db 的自定义表中。该数据与关联相关,包括地址、联系人和其他一些信息。该数据仅存储在数据库中,但不会显示在站点中。我想要做的是创建一个自定义内容类型,在其中我通过一个选择字段选择一个关联并从 db.xml 检索数据。有了这些数据,我想将它们“嵌入”到 html 代码中,而无需重新输入信息。有可能这样做吗?

我希望我的问题很清楚。

提前致谢, 毛罗

4

1 回答 1

0

Well, time has come to create your first Drupal Module .

  1. Create module files (module.info, module.module , module.install )
  2. Use Schema module to examine your custom table and provide you the hook_schema() you need in your .install file
  3. Create a hook_menu() to create the path you need for your page e.g mydrupal.com/custompage
  4. In custompage callback function , query your database using the best practices and return your data

for the custom content types and configurable theming you need to go even further and take advantage of the node_api and theming hooks and functions

Hope this helped

于 2012-10-13T10:33:23.337 回答