2010-12-05 118 views
0

我在學習drupal,在創建自定義內容類型的模塊上工作。一切正常。我可以添加和更新自定義節點。唯一不起作用的是當我編輯節點時,2個自定義字段的#default_value不顯示。這裏是我的hook_form:drupal:自定義內容類型字段#default_value不顯示

function mymodule_form(&$node, $form_state) { 
    $type = node_get_types('type', $node); 
    $form['title'] = array(
     '#type' => 'textfield', 
     '#title' => check_plain($type->title_label), 
     '#required' => TRUE, 
     '#default_value' => $node->title, 
     '#weight' => -5, 
    ); 
    $form['body'] = array(
    '#type' => 'textarea', 
    '#title' => check_plain($type->body_label), 
    '#rows' => 20, 
    '#default_value' => $node->body, 
    '#required' => TRUE, 
); 
    $form['other'] = array(
    '#type' => 'textfield', 
    '#title' => t('Other thingy'), 
    '#default_value' => $node->other, 
); 
    if ($node->type == 'chucky') { 
    $form['other2'] = array(
     '#type' => 'textfield', 
     '#title' => t('Other thingy 2'), 
     '#default_value' => $node->other2, 
    ); 
    } 
    return $form; 
} 

所以2個自定義字段等和其它2,那些列在表mymodule中,我可以添加和更新它們的值。但是它們不會被重新顯示爲編輯表單中的默認值。

回答

0

對不起,我應該在我正在關注的教程中進一步閱讀。顯然,自定義字段不是節點對象的一部分,除非您使用hook_load()檢索它們。現在工作正常。

相關問題