BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

torrentsdl.class.php 625B

123456789101112131415161718192021222324
  1. <?php
  2. class TorrentsDL
  3. {
  4. # Line 21
  5. private $AnnounceList;
  6. private $WebSeeds;
  7. # Line 22
  8. # Line 31
  9. public function __construct(&$QueryResult, $Title)
  10. {
  11. G::$Cache->InternalCache = false; // The internal cache is almost completely useless for this
  12. Zip::unlimit(); // Need more memory and longer timeout
  13. $this->QueryResult = $QueryResult;
  14. $this->Title = $Title;
  15. $this->User = G::$LoggedUser;
  16. $this->AnnounceURL = ANNOUNCE_URLS[0][0].'/'.G::$LoggedUser['torrent_pass'].'/announce';
  17. $this->WebSeeds = $WebSeeds;
  18. # Line 39
  19. }
  20. }
  21. # cont.