You are here

protected function Drupal_Apache_Solr_Service::_initUrls in Apache Solr Search 5.2

Same name and namespace in other branches
  1. 6 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

Overrides Apache_Solr_Service::_initUrls

See also

Apache_Solr_Service::_initUrls()

File

./Drupal_Apache_Solr_Service.php, line 190

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,
  ));
}