示例#1
0
 /**
  * server - de server waar naar geconnect moet worden
  * db - database object
  * rsakeys = array van rsa keys
  */
 function __construct($server, $db, $settings, $rsakeys, $outputType, $retrieveFull)
 {
     parent::__construct($server, $db, $settings);
     $this->_rsakeys = $rsakeys;
     $this->_outputType = $outputType;
     $this->_retrieveFull = $retrieveFull;
 }
示例#2
0
 /**
  * Server is the server array we are expecting to connect to
  * db - database object
  */
 function __construct($server, SpotDb $db, SpotSettings $settings, $outputType, $debug, $retro)
 {
     parent::__construct($server, $db, $settings, $debug, $retro);
     $this->_rsakeys = $this->_settings->get('rsa_keys');
     $this->_outputType = $outputType;
     $this->_retrieveFull = $this->_settings->get('retrieve_full');
     $this->_prefetch_image = $this->_settings->get('prefetch_image');
     $this->_prefetch_nzb = $this->_settings->get('prefetch_nzb');
 }
示例#3
0
 /**
  * Server is the server array we are expecting to connect to
  * db - database object
  */
 function __construct($server, SpotDb $db, SpotSettings $settings, $outputType, $debug)
 {
     parent::__construct($server, $db, $settings, $debug, false);
     $this->_outputType = $outputType;
 }
		/**
		 * server - de server waar naar geconnect moet worden
		 * db - database object
		 * rsakeys = array van rsa keys
		 */
		function __construct($server, SpotDb $db, SpotSettings $settings, $outputType) {
			parent::__construct($server, $db, $settings);			
			
			$this->_outputType = $outputType;
		} # ctor
 /**
  * server - de server waar naar geconnect moet worden
  * db - database object
  * rsakeys = array van rsa keys
  */
 function __construct($server, $db, $rsakeys, $outputType)
 {
     parent::__construct($server, $db);
     $this->_rsakeys = $rsakeys;
     $this->_outputType = $outputType;
 }
示例#6
0
 /**
  * Server is the server array we are expecting to connect to
  * db - database object
  */
 function __construct($server, SpotDb $db, SpotSettings $settings, $outputType, $debug, $retro)
 {
     parent::__construct($server, $db, $settings, $debug, $retro);
     $this->_outputType = $outputType;
     $this->_retrieveFull = $this->_settings->get('retrieve_full_comments');
 }