getFields(); $output .= drupal_get_form('apachesolr_search_settings_form', $fields); } catch (Exception $e) { watchdog('apachesolr', $e->getMessage()); drupal_set_message($e->getMessage(), "warning"); $output .= t('Cannot get information about the fields in the index at this time.'); } return $output; } /** * Form builder function to set date, comment, etc biases. */ function apachesolr_search_bias_form($form_state) { $date_settings = variable_get('apachesolr_search_date_boost', '4:200.0'); $comment_settings = variable_get('apachesolr_search_comment_boost', '4:200.0'); $options = array( '10:2000.0' => '10', '8:1000.0' => '9', '8:700.0' => '8', '8:500.0' => '7', '4:300.0' => '6', '4:200.0' => '5', '4:150.0' => '4', '2:150.0' => '3', '2:100.0' => '2', '1:100.0' => '1', '0:0' => t('Omit'), ); $form['biasing'] = array( '#type' => 'fieldset', '#title' => t('Result biasing'), '#collapsible' => TRUE, '#collapsed' => FALSE, '#description' => t('Give bias to certain properties when ordering the search results. Choose Omit to ignore this for any given property.'), ); $form['biasing']['apachesolr_search_date_boost'] = array( '#type' => 'select', '#options' => $options, '#title' => t("'More recent change' bias"), '#default_value' => $date_settings, '#description' => t('This setting will change the result scoring so that results changed more recently may appear before those with higher keyword matching.'), ); $form['biasing']['apachesolr_search_comment_boost'] = array( '#type' => 'select', '#options' => $options, '#title' => t("'More comments' bias"), '#default_value' => $comment_settings, '#description' => t('This setting will change the result scoring so that nodes with more comments may appear before those with higher keyword matching.'), ); return system_settings_form($form); } /** * Form builder function to set query field weights. */ function apachesolr_search_settings_form($form_state, $fields) { $form = array(); // get the current weights $qf = variable_get('apachesolr_search_query_fields', array()); $weights = drupal_map_assoc(array('21.0', '13.0', '8.0', '5.0', '3.0', '2.0', '1.0', '0.8', '0.5', '0.3', '0.2', '0.1')); $weights['0'] = t('Omit'); // Note - we have default values set in solrconfig.xml, which will operate when // none are set. $defaults = array( 'body' => '1.0', 'title' => '5.0', 'name' => '3.0', 'taxonomy_names' => '2.0', 'tags_h1' => '5.0', 'tags_h2_h3' => '3.0', 'tags_h4_h5_h6' => '2.0', 'tags_inline' => '1.0', 'tags_a' => '0', ); if (!$qf) { $qf = $defaults; } if ($fields) { $form['apachesolr_search_query_fields'] = array( '#type' => 'fieldset', '#title' => t('Field weights'), '#collapsible' => TRUE, '#collapsed' => FALSE, '#tree' => TRUE, '#description' => t('Specify here which fields are more important when searching. Give a field a greater numeric value to make it more important. If you omit a field, it will not be searched.'), ); foreach ($fields as $field_name => $field) { $form['apachesolr_search_query_fields'][$field_name] = array( '#access' => $field->type == 'text', '#type' => 'select', '#options' => $weights, '#title' => t('Weight for %field_name', array('%field_name' => $field_name)), '#default_value' => isset($qf[$field_name]) ? $qf[$field_name] : '0', ); } // Make sure all the default fields are included, even if they have no indexed content. foreach ($defaults as $field_name => $weight) { $form['apachesolr_search_query_fields'][$field_name] = array( '#type' => 'select', '#options' => $weights, '#title' => t('Weight for %field_name', array('%field_name' => $field_name)), '#default_value' => isset($qf[$field_name]) ? $qf[$field_name] : $defaults[$field_name], ); } ksort($form['apachesolr_search_query_fields']); } return system_settings_form($form); }