我正在尝试创建自定义搜索但却陷入困境。 我想要的是有一个下拉框,以便用户可以选择搜索的位置。 这些选项可以表示一种或多种内容类型。
因此,如果他选择选项A,则搜索将查看节点类型P,Q,R。 但是他可能不会给出那些结果,但只有那些将用于收集该用户特定数据的主题。
为了让它更清晰一点,假设我想为人们做爱。我正在搜索的是2个内容配置文件类型。但是当然你不想显示那些结果,而是用户和一些数据的漂亮图片。
我开始创建一个带有文本字段和下拉框的表单。 然后,在提交处理程序中,我创建了密钥并重定向到另一个页面,这些密钥作为尾部。此页面已在菜单钩子中定义,就像搜索一样。
之后,我想通过致电hook_view
致电node_search
进行实际搜索,并将结果归还。
不幸的是,它出了问题。当我点击“搜索”按钮时,它会给我一个404。
但我是否走在正确的轨道上?这是创建自定义搜索的方式吗?
感谢您的帮助。
以下是代码的清晰度:
<?php
// $Id$
/*
* @file
* Searches on Project, Person, Portfolio or Group.
*/
/**
* returns an array of menu items
* @return array of menu items
*/
function vm_search_menu() {
$subjects = _vm_search_get_subjects();
foreach ($subjects as $name => $description) {
$items['zoek/'. $name .'/%menu_tail'] = array(
'page callback' => 'vm_search_view',
'page arguments' => array($name),
'type' => MENU_LOCAL_TASK,
);
}
return $items;
}
/**
* create a block to put the form into.
* @param $op
* @param $delta
* @param $edit
* @return mixed
*/
function vm_search_block($op = 'list', $delta = 0, $edit = array()) {
switch ($op) {
case 'list':
$blocks[0]['info'] = t('Algemene zoek');
return $blocks;
case 'view':
if (0 == $delta) {
$block['subject'] = t('');
$block['content'] = drupal_get_form('vm_search_general_form');
}
return $block;
}
}
/**
* Define the form.
*/
function vm_search_general_form() {
$subjects = _vm_search_get_subjects();
foreach ($subjects as $key => $subject) {
$options[$key] = $subject['desc'];
}
$form['subjects'] = array(
'#type' => 'select',
'#options' => $options,
'#required' => TRUE,
);
$form['keys'] = array(
'#type' => 'textfield',
'#required' => TRUE,
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Zoek'),
);
return $form;
}
function vm_search_general_form_submit($form, &$form_state) {
$subjects = _vm_search_get_subjects();
$keys = $form_state['values']['keys']; //the search keys
//the content types to search in
$keys .= ' type:' . implode(',', $subjects[$form_state['values']['subjects']]['types']);
//redirect to the page, where vm_search_view will handle the actual search
$form_state['redirect'] = 'zoek/'. $form_state['values']['subjects'] .'/'. $keys;
}
/**
* Menu callback; presents the search results.
*/
function vm_search_view($type = 'node') {
// Search form submits with POST but redirects to GET. This way we can keep
// the search query URL clean as a whistle:
// search/type/keyword+keyword
if (!isset($_POST['form_id'])) {
if ($type == '') {
// Note: search/node can not be a default tab because it would take on the
// path of its parent (search). It would prevent remembering keywords when
// switching tabs. This is why we drupal_goto to it from the parent instead.
drupal_goto($front_page);
}
$keys = search_get_keys();
// Only perform search if there is non-whitespace search term:
$results = '';
if (trim($keys)) {
// Log the search keys:
watchdog('vm_search', '%keys (@type).', array('%keys' => $keys, '@type' => $type));
// Collect the search results:
$results = node_search('search', $type);
if ($results) {
$results = theme('box', t('Zoek resultaten'), $results);
}
else {
$results = theme('box', t('Je zoek heeft geen resultaten opgeleverd.'));
}
}
}
return $results;
}
/**
* returns array where to look for
* @return array
*/
function _vm_search_get_subjects() {
$subjects['opdracht'] =
array('desc' => t('Opdracht'),
'types' => array('project')
);
$subjects['persoon'] =
array('desc' => t('Persoon'),
'types' => array('types_specialisatie', 'smaak_en_interesses')
);
$subjects['groep'] =
array('desc' => t('Groep'),
'types' => array('Villamedia_groep')
);
$subjects['portfolio'] =
array('desc' => t('Portfolio'),
'types' => array('artikel')
);
return $subjects;
}
答案 0 :(得分:0)
老实说,我没见过很多人实现hook_search。大多数情况下只使用Views,或者对于高级内容,请使用Faceted Search。
您是否考虑过使用当前项目?为什么不起作用?
答案 1 :(得分:0)
你也可以结合使用hook_menu来获得结果,将db_queries与自定义(以及优化得更快)的查询结合使用。
例如:
搜索/%/%
其中的参数可以是你需要的任何东西,例如第一个用于最低价格,第二个价格到最高价格,第三个用于最小卧室......你的网址看起来总是那样:
search / 200/400 / null / 3 / ...
我使用了null,但它可能是您更喜欢将此字段视为空的任何内容。
然后,从您的选择表单中,您只需重定向该网址的结构并在正确的位置添加参数。
这不是构建网址最美丽的方式,但使用这种技术和hook_theme将使您拥有无限的灵活性。我可以告诉你一个我们正在使用这种技术的项目,我觉得它看起来很不错: - )。
对此的任何评论都会受到很大的评价: - )。