You are here

function apachesolr_boost_settings_page in Apache Solr Search 6

Same name and namespace in other branches
  1. 5.2 apachesolr_search.admin.inc \apachesolr_boost_settings_page()
  2. 6.2 apachesolr_search.admin.inc \apachesolr_boost_settings_page()

Menu callback - boosts settings form.

1 string reference to 'apachesolr_boost_settings_page'
apachesolr_search_menu in ./apachesolr_search.module
Implementation of hook_menu().

File

./apachesolr_search.admin.inc, line 30
Administrative settings for searching.

Code

function apachesolr_boost_settings_page() {
  $output = drupal_get_form('apachesolr_search_bias_form');
  $output .= drupal_get_form('apachesolr_search_type_boost_form');
  return $output;
}