我正在将 Drupal Webform 与 CRM Highrise 集成 - 我正在使用 Highrise Drupal 模块 ( https://drupal.org/project/highrise ) 创建一些映射 - 但是我想扩展模块以将其他表单值传递给在 Highrise 中指定的“背景”字段,我遇到的问题是,与其传递“生日派对”的表单值,它只是在 Highrise 中返回“数组”,下面是我现在拥有的代码:
//initial variable declaration
$form['#get_eventtype'] = drupal_render($event_type);
//making the call to post to Highrise
case 4:
$background = $form_state['values']['submitted'][$row['cid']];
$background .= $form['#get_eventtype'];
$new_person->setBackground($background);
break;