setQuery('SELECT `value` FROM `#__openaire` WHERE `key` = \'serviceUrl.openaire\''); $this->serviceUrl = $db->loadResult(); } public function getBrowseStatistics() { $url = $this->serviceUrl.'xmlResults.action'; $params = array('includeStats' => 'true'); $xmlString = load($url, $params); if ($xmlString != null) $stats = StatisticParser::parseXml($xmlString); else $stats = null; return $stats; } } ?>