You are here

protected function Drupal_Apache_Solr_Service::_initUrls in Apache Solr Search 6

Same name and namespace in other branches
  1. 5.2 Drupal_Apache_Solr_Service.php \Drupal_Apache_Solr_Service::_initUrls()
  2. 6.2 Drupal_Apache_Solr_Service.php \Drupal_Apache_Solr_Service::_initUrls()

Construct the Full URLs for the three servlets we reference

See also

Apache_Solr_Service::_initUrls()

File

./Drupal_Apache_Solr_Service.php, line 193

Class

Drupal_Apache_Solr_Service

Code

protected function _initUrls() {
  parent::_initUrls();
  $this->_lukeUrl = $this
    ->_constructUrl(self::LUKE_SERVLET, array(
    'numTerms' => '0',
    'wt' => self::SOLR_WRITER,
  ));
}