如何从webform结果创建特定内容类型的节点?

时间:2012-10-24 06:55:38

标签: drupal-6 webforms drupal-7 content-type

是否可以配置webform以根据提交的数据创建特定内容类型的节点?假设webform中的字段将直接匹配内容类型上的字段。

2 个答案:

答案 0 :(得分:1)

//Declare a new StdObj
$node = new StdObj();

//Set the type
$node->type='your_content_type';

//Set the Title
$node->title='title';

//Set the body
$node->body = 'body';

//Set other content fields
$node->field_name[0]['value'];

//Finally use functions to save, submit, and insert the node
$node = node_save($node);
node_submit($node);
content_insert($node);

答案 1 :(得分:0)

使用与webform相同的字段创建内容类型,并授予匿名用户创建该内容类型的节点的权限。