1
這裏是我的hook_elements:drupal'#process'回調似乎不起作用!
function test_elemets() {
return array(
'test_field' => array(
'#input' => TRUE,
'#process' => array('test_field_process'),
)
);
}
和工藝回調:
function test_field_process($element, $edit, &$form_state, $complete_form)
$element = array();
return $element;
}
,你在過程中的作用看,我用$元素=陣列(),看看有什麼happens.But形式表示爲爲什麼?
如果你返回一個空數組,那麼你會發生什麼? – 2010-10-15 10:47:57