function mymodule_search_form($form, &$form_state) {
$form..... define the form here
$form['submit'] = array(
'#type' => 'submit',
'#value' => 'Search',
);
return $form;
}
function mymodule_search_form_submit($form, &$form_state) {
//process the form and get result
$output = this is the result with a table of data.
//I want to display the result table here.
//Now I can only use drupal message to display on top.
drupal_set_message($output);
return;
}
所以基本上我想要一个表单来搜索数据库中的内容。 点击提交进行搜索后,即可获得结果。
我想在同一表单页面的表单下显示结果。 请勿转到其他页面,只需在原始表单页面中。
表单可以清理/重置为原始状态,这很好。
http://drupal.org/node/542646 这个讨论是我想要的,但在那里看起来没有可靠的结果/解决方案。
答案 0 :(得分:10)
您可以将输出表存储在$form_state
中,将表单设置为重建,并在原始表单函数中存在时显示它,例如
function mymodule_search_form($form, &$form_state) {
$form..... define the form here
if (!empty($form_state['results_table'])) {
$form['results_table'] = array('#markup' => $form_state['results_table']);
}
$form['submit'] = array(
'#type' => 'submit',
'#value' => 'Search',
);
return $form;
}
function mymodule_search_form_submit($form, &$form_state) {
$form_state['results_table'] = function_to_get_table();
$form_state['rebuild'] = TRUE;
}