/**
  * WPSDLazyfeed.
  */
 function WPSDLazyfeed()
 {
     parent::WPSDStats();
     $form = new WPSDAdminConfigForm();
     $this->un = trim($form->getWpsdLazyfeedUn());
     if ('' != $this->un) {
         $this->address = 'http://www.lazyfeed.com/user/' . $this->un;
         if ($this->isOutdated()) {
             $this->xml = $this->fetchDataRemote($this->address);
             $this->set();
         } else {
             $this->set_cached();
         }
     }
 }