我有drupal,我想知道数据库中哪个图像与哪个内容项有关? 在其他世界“选择加入内容(节点,页面,故事等)和图像” 我必须使用哪些表?
非常感谢你的帮助
答案 0 :(得分:0)
这取决于您使用哪些模块将图像附加到节点。
files
表。node
表中。连接的数据可以在几个地方,如果你使用CCK,这是最常用的东西,有功能,将为你生成这个,因为它取决于设置如何数据是存储:
$field = content_fields('FIELD_NAME');
$db_info = content_database_info($field);
您需要的可能是其中一些:
$db_info['columns']['nid']['column'] // the table for the nid, used to join node table
$db_info['columns']['fid']['column'] // the table for the fid, used to join files table
$db_info['table'] // The table the data is stored in