2

我创建了一个内容类型库。我有字段描述和图像,我想从内容类型库中检索所有数据。我不知道 drupal 从内容类型中保存图像路径的位置。如果有人可以帮助我,那就太好了。我只想要drupal保存在自定义内容中上传的图像的表名..

4

2 回答 2

7

我相信您要查找的表是file_managed (Drupal 7) 或files (Drupal 6)。这将为您提供上传图像的路径。

于 2012-05-14T03:55:42.707 回答
2

Drupal 不在乎使用什么内容类型,图像在 file_managed 表中,您也可以在节点数组中找到图像 url。试试<?php drupal_set_message('<pre>'.print_r($node, true).'</pre>');?>你的 node.tpl.php 文件。

于 2012-05-13T12:18:04.220 回答