4
添加或编辑节点后,重定向到自定义页面
使用hook_form_alter,在创建或编辑节点而不是创建或编辑的节点之后,如何将用户重定向到自定义页面? 的当前代码hook_form_alter()如下: function custom_form_alter(&$form, &$form_state, $form_id) { if ($form['#id'] == 'custom-node-form') { $form['actions']['submit']['#value'] = t('Add Entry'); $form['field_custom_email']['und'][0]['value']['#element_validate'] = array('_custom_form_validate_email'); } }
15
7
forms
redirection