2013-03-18 24 views
1

嘗試在新的內容類型添加表單中添加一些額外的表單項。Drupal hook_form_alter體重控制

也嘗試增加提交和預覽的重量。

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

    $form['actions']['submit']['#weight'] = 2000; 
    $form['actions']['preview']['#weight'] = 2001; 
} 

但不知何故提交和預覽按鈕仍然在新增項目上方。

+0

嘗試設置你想要更高的項目的權重是一個較低的數字?此外,這個問題屬於[Drupal Answers](http://drupal.stackexchange.com/?as=1)。 – Aiias 2013-03-18 01:25:03

回答

4

嘗試將#weight屬性添加到$form['actions']包裝。

您當前的代碼更改actions wrapper中2個按鈕的權重,並且不會影響包裝的權重。

E.g.看到下面的代碼:

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

    $form['actions']['#weight'] = 2000; 
} 

希望這個作品。