download201401 2017-01-08 23:53 采纳率: 0%
浏览 51
已采纳

Drupal 7 - 节点表单 - dsm / dpm不适用于自己的验证/提交功能

I want to add an own validation (or submit) handler/function to my existing node form. I tried multiply things (following), but it does not work properly.

function MY_MODULE_form_alter(&$form, &$form_state, $form_id) { 
  $form['#validate'][] = 'MY_MODULE_handler';
//or
  $form['actions']['submit']['#validate'][] = 'MY_MODULE_handler';
//or
  $form['submit']['#submit'][] = 'MY_MODULE_handler';
//or
  $form['#submit'][] = 'MY_MODULE_handler';
//or
  array_unshift($form['#validate'], 'MY_MODULE_handler');
//or
  $form['actions']['submit']['#submit'][]='MY_MODULE_handler';
}

But none of these attempts seem to work with my handler:

function MY_MODULE_handler($form, &$form_state){
  dsm($form);  
  dsm($form_state);
}

Looking at the $form variable in form_alter I found that $form['actions']['submit']['#submit'] and $form['#validate'] have already a submit/validate handler.

But if I use one of the examples above, nothing is printed by dsm. In addition it does not print the confirmation (of submitting) anymore! But if I use

function MY_MODULE_handler($form, &$form_state){
  die('Handler was hit');
}

I see that the handler was hit.

What can be the reason? I need the handler to read two form fields and save them in one node attribute.

  • 写回答

1条回答 默认 最新

  • doukuanghuan7582 2017-01-09 15:16
    关注

    As @2pha proposed, I used instead of an additional validation/submit handler the hook HOOK_node_presave which allowed me to solve my problem (which was to assign values from the form to one node attribute, see comments).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 反激PWM控制芯片调研
  • ¥15 Python for loop减少运行时间
  • ¥15 fluent模拟物质浓度udf
  • ¥15 Collection contains no element matching the predicate
  • ¥20 冻品电商平台的搜索是怎么实现的
  • ¥15 如何搞一个可以控制、显示马达频率
  • ¥15 WPF动态创建页面内容
  • ¥15 如何对TBSS的结果进行统计学的分析已完成置换检验,如何在最终的TBSS输出结果提取除具体值及如何做进一步相关性分析
  • ¥15 SQL数据库操作问题
  • ¥15 Matlab安装yalmip和cplex功能安装失败