我尝试实现一个新模块,该模块捕获默认搜索表单中编写的键并显示默认搜索结果页面以外的其他结果。使用这些其他结果,我将进行一个外部查询,该查询放在一个特殊的块中。
关于如何做到这一点的任何想法?
我尝试使用自定义模块制作“hook_alter_form”但没有成功。
换句话说 :
我有这样的功能:
function my_function_name_form_alter(&$form,&$form_state,$form_id){
switch($form_id){
case 'search-block-form':
//Here i want to catch the text that i wrote in the search box
break;
}
}
感谢你!