You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.6 KiB
59 lines
1.6 KiB
<?php |
|
|
|
/* |
|
* |
|
*/ |
|
|
|
/** |
|
* @param $variables |
|
*/ |
|
function roblib_search_solr_site_preprocess_roblib_search_solr_site_bestbet(&$variables) { |
|
roblib_search_solr_site_preprocessor($variables, 'bestbet'); |
|
} |
|
|
|
/** |
|
* @param $variables |
|
*/ |
|
function roblib_search_solr_site_preprocess_roblib_search_solr_site_results(&$variables) { |
|
roblib_search_solr_site_preprocessor($variables, 'results'); |
|
} |
|
|
|
/** |
|
* @param $variables |
|
*/ |
|
function roblib_search_solr_site_preprocess_roblib_search_solr_site_databases(&$variables) { |
|
roblib_search_solr_site_preprocessor($variables, 'databases'); |
|
} |
|
|
|
/** |
|
* @param $variables |
|
*/ |
|
function roblib_search_solr_site_preprocess_roblib_search_solr_site_guides(&$variables) { |
|
roblib_search_solr_site_preprocessor($variables, 'guides'); |
|
} |
|
|
|
|
|
/** |
|
* @param array $variables |
|
* @param string $type |
|
* |
|
* @return string |
|
*/ |
|
function roblib_search_solr_site_preprocessor(&$variables, $type) { |
|
global $base_url; |
|
if (!isset($query)) { |
|
if (isset($_GET['roblib_query'])) { |
|
$query = $_GET['roblib_query']; |
|
} |
|
else { |
|
return ''; |
|
} |
|
} |
|
$spinner_path = $base_url . '/' . drupal_get_path('module', 'roblib_search') . '/img/' . 'spinner.gif'; |
|
$variables['spinner_path'] = $spinner_path; |
|
$variables['type'] = $type; |
|
$search_url = $base_url . '/roblib_search/solr_site/' . $type . '/' . urlencode($query); |
|
drupal_add_js(drupal_get_path('module', 'roblib_search_solr_site') . '/js/solr_site_' . $type . '.js'); |
|
$key = 'roblib_search_solr_site_' . $type; |
|
drupal_add_js(array($key => array('search_url' => $search_url)), array('type' => 'setting')); |
|
}
|
|
|