I know its stupid but I have never learned php so could you tell me how to set up data in this way?
[php] $this->ssl = $ssl ? ‘ssl://’ : ‘’;
$this->username = $username;
$this->password = $password;
$this->theme = $theme;
$this->auth = base64_encode($username . ‘:’ . $password);
$this->port = $port;
$this->host = $host;
$this->path = ‘/frontend/’ . $theme . ‘/’;[/php]