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).

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

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效