Drupal中关于表单form的drupal_get_form方法如何传递自定义参数

 

 最近使用Drupal的表单,调用表单时希望传入我需要的参数进入到表单构建方法,具体如下:

function itemform_page($user) { // $output = t('This page contains our example form.'); // Return the HTML generated from the $form data structure. $uid = '888'; $output .= drupal_get_form('itemform',$uid); return $output; }

 

function itemform(&$form_state,$uid) { $form['item_options'] = array( '#type' => 'value', '#value' => $uid ); }

 

你可能感兴趣的:(Drupal的开发技巧,问题以及解决办法)