示例#1
0
 public function __construct(Host $host, $group, $boardindexer = null)
 {
     parent::__construct($boardindexer);
     $this->host = $host;
     $this->group = $group;
     // Verbindung initialisieren
     $this->nntpclient = new Net_NNTP_Client();
 }
示例#2
0
 public function __construct(Host $host, $loginusername, $loginpassword, $folder, $boardindexer, $writer = false)
 {
     parent::__construct($boardindexer);
     $this->host = $host;
     $this->loginusername = $loginusername;
     $this->loginpassword = $loginpassword;
     $this->folder = $folder;
     $this->writer = $writer;
 }