Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个内容类型库。我有字段描述和图像,我想从内容类型库中检索所有数据。我不知道 drupal 从内容类型中保存图像路径的位置。如果有人可以帮助我,那就太好了。我只想要drupal保存在自定义内容中上传的图像的表名..
我相信您要查找的表是file_managed (Drupal 7) 或files (Drupal 6)。这将为您提供上传图像的路径。
Drupal 不在乎使用什么内容类型,图像在 file_managed 表中,您也可以在节点数组中找到图像 url。试试<?php drupal_set_message('<pre>'.print_r($node, true).'</pre>');?>你的 node.tpl.php 文件。
<?php drupal_set_message('<pre>'.print_r($node, true).'</pre>');?>