1

是否可以配置 web 表单以根据提交的数据创建特定内容类型的节点?假设来自网络表单的字段将直接匹配内容类型上的字段。

4

2 回答 2

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);
于 2012-11-08T03:27:22.887 回答
0

创建与 web 表单具有相同字段的内容类型,并授予匿名用户创建该内容类型节点的权限。

于 2012-11-04T15:15:12.763 回答