コード例 #1
0
 /**
  * WPSD99Designs.
  *
  * @param boolean $curl
  */
 function WPSD99Designs($curl = false)
 {
     parent::WPSDStats();
     $form = new WPSDAdminConfigForm();
     $this->un = trim($form->getWpsd99DesignsUn());
     if ('' != $this->un) {
         $this->address = 'http://99designs.com/people/' . $this->un;
         if ($this->isOutdated()) {
             $this->xml = $this->fetchDataRemote($this->address, false, 1, true);
             $this->set();
         } else {
             $this->set_cached();
         }
     }
 }