dsv17139 2014-12-16 15:49
浏览 60
已采纳

挂钩Drupal Webform提交

I'm developing a Drupal 7 website. The website has a couple of forms which take a users email address. As part of the process I need to be able to submit the email to a mailing list across an API.

I have all the calls written and tested for adding new users to mailing lists etc. What I'm not so sure of is how I get this code to run when the form is submitted on the Drupal site.

I assume there will be a hook function but I'm struggling to track it down. My forms are setup using Webforms module.

  • 写回答

1条回答 默认 最新

  • dongya4335 2014-12-16 17:49
    关注

    Use hook_form_alter() to hook in your webform instance & add an additional submit handler:

    /**
     * Implements hook_form_alter().
     */
    function hook_form_alter(&$form, $form_state, $form_id) { 
        if ($form_id == 'webform_client_form_{some id}')
        {
            array_unshift($form['#submit'], 'custom_webform_submit');
        }
    }
    

    Next in custom_webform_submit() execute your custom code:

    function custom_webform_submit($form, $form_state) {
        // custom code here
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥15 (关键词-阻抗匹配,HFSS,RFID标签天线)
  • ¥15 机器人轨迹规划相关问题
  • ¥15 word样式右侧翻页键消失