Drupal 7以编程方式将数据提交给webform
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Drupal 7以编程方式将数据提交给webform相关的知识,希望对你有一定的参考价值。
我在Drupal站点上有一个webform,我需要使用以下代码以编程方式发布数据:
// Get the node ID of the created Webform and load the node.
$node = node_load($nid);
global $user;
$uid = $user->uid;
// Include files.
module_load_include('inc', 'webform', 'webform.module');
module_load_include('inc', 'webform', 'includes/webform.submissions');
// Prepare the data for submission.
$data = array(
2 => array('value' => array('question_id')),
1 => array('value' => array('quiz_name')),
3 => array('value' => array('your_feedback')),
);
$submission = (object) array(
'nid' => $nid,
'uid' => $user->uid,
'submitted' => REQUEST_TIME,
'remote_addr' => ip_address(),
'is_draft' => FALSE,
'data' => $data,
);
print_r($submission);
$sid = webform_submission_insert($node, $submission);
return "Submission {$sid} received!";
问题是提交已创建,但它完全是空的我:$data
数组未在提交中表示。
答案
global $user;
$nid = 4; //nid is the node id of your webform.
$node = node_load($nid);
// The values to save. Take case about array indexes! (see below)
$data = array(
'1' => array('0' => $type),
'2' => array('0' => $method),
'5' => array('0' => $volume),
'6' => array('0' => $comment),
'7' => array('0' => $phone),
'8' => array('0' => $length)
);
$submission = (object) array(
'nid' => $nid,
'uid' => $user->uid,
'submitted' => REQUEST_TIME,
'remote_addr' => ip_address(),
'is_draft' => FALSE,
'data' => $data,
);
// Include the necessary files.
module_load_include('inc', 'webform', 'webform.module');
module_load_include('inc', 'webform', 'includes/webform.submissions');
webform_submission_insert($node, $submission); // Submit a submission.
webform_submission_send_mail($node, $submission); // Send webform's e-mails
qazxsw poi,qazxsw poi,qazxsw poi等只是必须写入webform字段的变量。数组索引是webform的字段索引。
如何获取索引并找出哪些是哪里?
- 转到您的webform组件页面(如
$type
'4'是一个webform nid)。 - 鼠标悬停在字段“编辑”链接上并查看链接源(href)。它应该是这样的:
$method
,其中'2'是该字段的索引。 - 对所有必要的字段执行相同操作。
- 如果遇到麻烦,请查看webform_submitted_data数据库表。它有字段: nid(webform id), sid(提交ID), cid(字段索引!), 不(不知道,可能是多值字段的delta), 数据(存储的字段数据)。
以上是关于Drupal 7以编程方式将数据提交给webform的主要内容,如果未能解决你的问题,请参考以下文章