2

我正在开发一个将 XML 内容导入 Drupal 7 的项目。我已经在 PHP 中解析了所有数据。

到目前为止,我已成功导入节点正文及其标题。Drupal 7 没有关于如何将图像附加到节点和标签的文档。我真的需要帮助,因为我花了两天时间试图找到解决方案。如果有人提出解决方案,我将不胜感激。请引导我到某个地方。

function make_nodes($nodes) {
  $new_node = $nodes[0];
  $node = new stdClass();
  $node->title = $new_node['title'];
  $node->body['und'][0]['value'] = $new_node['body'];
  $node->type = 'article';
  $node->created = $new_node['timestamp'];
  $node->changed = $new_node['timestamp'];
  $node->status = 1;
  $node->promote = 1;
  $node->sticky = 0;
  $node->body['und'][0]['format'] = 1;
  $node->uid = (isset($local_user->uid) && !empty($local_user->uid)?$local_user->uid:1);
  $node->language = 'en';
  $node->timestamp = $new_node['timestamp'];
  $node->revision = 0;
  node_submit($node);
  node_save($node);
}
4

2 回答 2

0

HI. After reading the documentation for 10 hours i finaly did it...i am including my code here

$uri = 'bird/bird_image.jpg';
$files =  new stdClass();
$files->uid = (isset($local_user->uid) && !empty($local_user->uid)?$local_user->uid:1);
$files->filename = 'bird.jpg';
$files->uri = $uri; 
$files->filemime = file_get_mimetype($uri);
$files->status = 1;
$files->timestamp = $new_node['timestamp'];

file_copy($files);

thats how one can upload file and to the drupal 7 database

于 2010-08-27T02:31:33.010 回答
0

您需要将ImageField添加到您的内容类型。这是 Drupal 6 中的一个单独模块,但在 Drupal 7 中移入核心。模块页面上链接了一些导入脚本,但 API 可能在 Drupal 7 中发生了变化。

您还可以查看为导入 Drupal 提供框架的Migrate 模块。

于 2010-08-26T16:21:22.703 回答