function apachesolr_base_url in Apache Solr Search 5
1 call to apachesolr_base_url()
- Solr_Base_Query::get_fields_in_index in ./
Solr_Base_Query.php - Luke query to find out what fields the Lucene index already knows about. TODO: Does this belong in this class? Or in a Service class? Or in the module itself?
File
- ./
apachesolr.module, line 752 - Integration with the Apache Solr search application.
Code
function apachesolr_base_url() {
return "http://" . variable_get('apachesolr_host', 'localhost') . ':' . variable_get('apachesolr_port', '8983') . variable_get('apachesolr_path', '/solr');
}