Drupal에서 양식을 작성하는 데있어 선포 된 초보자입니다. Drupal 7 웹 사이트에서 호스팅하는 양식이 있고 (webform 모듈 사용) 양식 값을 외부 URL에 제출해야합니다. 나는 이것을 잠시 동안 연구하고 있으며 web_form_alter와 사용자 정의 제출 핸들러 / 함수 (아래에 붙여 넣은 코드)를 사용하여 웹 양식 모듈을 사용하여 외부로 제출하는 사용자 정의 모듈을 작성했습니다.
다음 페이지를 가이드로 사용했지만 양식을 사용할 수 없었습니다. https://drupal.org/node/1357136 drupal_http_post ()를 사용하여 외부 사이트에 제출 : 내가하는 일 잘못된?
내가 올바른 길을 가고 있는지 누군가에게 알려줄 수 있습니까? 어떤 안내라도 도움이 될 것입니다!
<?php
function webform_extra_form_alter(&$form, &$form_state, $form_id)
{
//only want form with nid 1171 to submit externally
//Note that "webform_client_form_1171" means modify the Webform form for the node with NID "1171". Adjust to match whichever webform node's form you're modifying
if($form_id == 'webform_client_form_1171')
{
$form['#action'] = url('https://[url path to external site]');
$form['#attributes'] = array('enctype' => "application/x-www-form-urlencoded");
$form['#submit'][] = 'webform_extra_submit';
}
}
// Adds a submit handler/function for the app signup form (Webform ID #1171)
function webform_extra_submit($form, &$form_state)
{
// Changes can be made to the Webform node settings by modifying this variable
//$form['#node']->webform;
// Insert values into other database table using same input IDs as external db
$option['query'] = array(
$firstName => $form_state['values']['firstName'],
$lastName => $form_state['values']['lastName'],
$email => $form_state['values']['email'],
$name => $form_state['values']['name'],
$phone => $form_state['values']['phone'],
);
$url = url('https://[url path to external site]', $option);
$form_state['redirect'] = $url;
//$form['#action'] = url('https:[url path to external site]');
//$url = 'https://[url path to external site]';
//$headers = array('Content-Type' => 'application/x-www-form-urlencoded',);
//$response = drupal_http_request($url, $headers, 'POST', http_build_query($form_state['values'], '', '&'));
}
?>