예제 #1
0
 /**
  * WPSDQuora.
  */
 function WPSDQuora()
 {
     parent::WPSDStats();
     $form = new WPSDAdminConfigForm();
     $this->un = trim($form->getWpsdQuoraUn());
     if ('' != $this->un) {
         $this->address = 'http://www.quora.com/' . $this->un;
         if ($this->isOutdated()) {
             $this->xml = $this->fetchDataRemote($this->address);
             $this->set();
         } else {
             $this->set_cached();
         }
     }
 }