Drupal hook_form_alter权重控制

All*_*hen 1 php drupal drupal-7 drupal-fapi

尝试在新的内容类型添加表单中添加一些额外的表单项。

还要尝试增加提交和预览的权重。

function mymodule_form_alter(&$form, &$form_state, $form_id){
  //add some $form items here

  $form['actions']['submit']['#weight'] = 2000;
  $form['actions']['preview']['#weight'] = 2001;
}
Run Code Online (Sandbox Code Playgroud)

但不知何故,提交和预览按钮仍然位于添加的新项目上方。

Muh*_*eda 5

尝试将#weight属性添加到包装器中$form['actions']

您当前的代码更改了 内 2 个按钮的权重actions wrapper,并且不影响包装器的权重。

例如看下面的代码:

function mymodule_form_alter(&$form, &$form_state, $form_id)
{
    //add some $form items here

    $form['actions']['#weight'] = 2000;
}
Run Code Online (Sandbox Code Playgroud)

希望这有效。