我试图用Drupal 7中的LIKE子句替换默认搜索。我试图根据向现有查询中添加OR条件来更改查询:
function MYMODULE_query_node_access_alter(QueryAlterableInterface $query) {
foreach ($query->getTables() as $table) {
// LIKE for search results.
if ($table['table'] == 'search_index') {
// Get the query args and then the search term
$args =& $query->getArguments();
$search = $args[':db_condition_placeholder_1'];
// Get a reference to the existing query conditions.
$conditions =& $query->conditions();
// Save the former conditions
$former_conditions = $conditions;
// Reset the condition array. It needs a default #conjunction for which AND is fine
$conditions = array('#conjunction' => array_shift($former_conditions));
// Replace the search condition in the query
foreach ($former_conditions as $key => $condition) {
if ($key != 1) {
$query->condition($condition['field'], $condition['value'], $condition['operator']);
}
else {
$query->condition('i.word', '%' . db_like($search) . '%', 'LIKE');
}
}
}
}
}
使用单词“ declaration”进行搜索将显示与默认的drupal搜索相同的结果,但是使用“ decl”进行搜索将找不到任何结果。
有什么想法为什么我的代码不起作用?
1
drupal.org/project/fuzzysearch模块应该可以解决您的问题。你可以给它一个尝试..
—
阿尼尔·萨格尔
谢谢。我希望使用hook_query_alter(如果可能)的解决方案,因为已经设置了搜索表单和结果页面。我也想知道为什么我的代码无法用于其他用例。
—
user9932 2012年
似乎您已经完成了90%的工作,只需要最后一部分才能使其起作用,但我认为您的做法是错误的。有很多搜索模块可以处理各种用例,我敢肯定您会找到一个可以解决您的问题的模块。使用这种干预措施可能会导致混乱和不可维护性。
—
艾伦·迪克森