如何确定apachesolr是否返回了null结果

时间:2010-09-08 17:05:44

标签: drupal solr

如果apachesolr在单独的模块中为搜索查询返回了null结果,我希望执行一些代码。我希望保持apacheolr模块和acquia模块不变。

1 个答案:

答案 0 :(得分:0)

我一直在寻找相同的东西,发现这个评论非常有用:

http://drupal.org/node/877346#comment-3310554

基本上你只是覆盖主题中template.php中的theme_box函数,并检查标题和内容是否与默认的“无结果”模板匹配。

我最终得到了什么:

function mytheme_box($title, $content, $region = 'main') {
  if ($title == t('Your search yielded no results') &&
      $content == variable_get('apachesolr_search_noresults', apachesolr_search_noresults())) {
    if ($_GET['fuzzyhelp']) {
      // No results with fuzzy, go to landing page for no results. 
      drupal_goto('search_no_results'); 
    }

    // Rewrite search keys with fuzzy characters.
    $keys = array_map('trim', explode(' ', search_get_keys()));
    drupal_goto('search/apachesolr_search/'. implode('~ ', $keys). '~', 'fuzzyhelp=1');    
  }
  else if ($_GET['fuzzyhelp']) {
    // Tell user search was rewritten with fuzzy notations.
    drupal_set_message(t('Your exact search did not match any products and was broadened to include all possible matches.'));
  }

  return $content;
}
相关问题