/** * WPSDHyves. * * @param boolean $curl */ function WPSDHyves($curl = false) { parent::WPSDStats(); $form = new WPSDAdminConfigForm(); $this->un = trim($form->getWpsdHyvesUn()); if ('' != $this->un) { $this->address = 'http://' . $this->un . '.hyves.nl/profile/'; if ($this->isOutdated()) { $this->xml = $this->fetchDataRemote($this->address); $this->set(); } else { $this->set_cached(); } } }