function TestFileTransfer::connect

Connect to the server.

Overrides FileTransfer::connect

File

modules/simpletest/tests/filetransfer.test, line 114

Class

TestFileTransfer
Mock FileTransfer object for test case.

Code

function connect() {
  $parts = explode(':', $this->hostname);
  $port = count($parts) == 2 ? $parts[1] : $this->port;
  $this->connection = new MockTestConnection();
  $this->connection->connectionString = 'test://' . urlencode((string) $this->username) . ':' . urlencode((string) $this->password) . "@{$this->host}:{$this->port}/";
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.