Esempio n. 1
0
 public function DeviantArt_Log($username, $format = 1)
 {
     $this->username = trim($username);
     parent::Feed();
 }
Esempio n. 2
0
 function RSS($module_id, $feed_name = DEFAULT_FEED_NAME, $id_cat = 0)
 {
     parent::Feed($module_id, $feed_name, $id_cat);
     $this->tpl = new Template(DEFAULT_RSS_TEMPLATE);
 }
Esempio n. 3
0
 public function DeviantArt_Log($username, $format = 1)
 {
     $url = sprintf(self::BACKEND_URL, $username, $format);
     parent::Feed($url);
 }
Esempio n. 4
0
 public function DeviantArt_Gallery($username)
 {
     $this->username = trim($username);
     $this->rating = $rating;
     parent::Feed();
 }
 public function DeviantArt_Favourite($username, $rating = null)
 {
     $url = sprintf(self::BACKEND_URL, $username);
     $this->rating = $rating;
     parent::Feed($url);
 }
Esempio n. 6
0
 public function DeviantArt_Favourite($username, $rating = null)
 {
     $this->username = trim($username);
     $this->rating = $rating;
     parent::Feed();
 }