TrackManiaControl/application/core/Server/Config.php

39 lines
885 B
PHP
Raw Normal View History

2014-03-20 16:18:35 +01:00
<?php
namespace ManiaControl\Server;
/**
* Model Class holding the Server Config
*
2014-05-02 17:50:30 +02:00
* @author ManiaControl Team <mail@maniacontrol.com>
* @copyright 2014 ManiaControl Team
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
2014-03-20 16:18:35 +01:00
*/
class Config {
/*
* Public Properties
2014-03-20 16:18:35 +01:00
*/
public $id = null;
public $host = null;
public $port = null;
public $login = null;
public $pass = null;
/**
* Create a new Server Config Instance
*
2014-05-02 17:50:30 +02:00
* @param string $id Config Id
* @param string $host Server Ip
* @param string $port Server Port
2014-03-20 16:18:35 +01:00
* @param string $login XmlRpc Login
2014-05-02 17:50:30 +02:00
* @param string $pass XmlRpc Password
2014-03-20 16:18:35 +01:00
*/
public function __construct($id = null, $host = null, $port = null, $login = null, $pass = null) {
2014-05-02 17:50:30 +02:00
$this->id = $id;
$this->host = $host;
$this->port = $port;
2014-03-20 16:18:35 +01:00
$this->login = $login;
2014-05-02 17:50:30 +02:00
$this->pass = $pass;
2014-03-20 16:18:35 +01:00
}
}