1
我想將新項目添加到現有表單中。我有表格的ID,我知道我需要使用hook form_alter,但不知道如何添加它。Drupal 6 Form Api將項目添加到現有表單
function modulename_form_alter(&$form, $form_state, $form_id) {
switch ($form_id) {
case 'form id goes here':
// Need to do something here....
break;
}
}