38 lines
941 B
PHP
38 lines
941 B
PHP
<?php
|
|
namespace Dedimania;
|
|
|
|
/**
|
|
* ManiaControl Dedimania-Plugin Player DataStructure
|
|
*
|
|
* @author kremsy and steeffeen
|
|
* @copyright ManiaControl Copyright © 2014 ManiaControl Team
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
|
*/
|
|
class DedimaniaPlayer {
|
|
public $login = '';
|
|
public $maxRank = -1;
|
|
public $banned = false;
|
|
public $optionsEnabled = false;
|
|
public $options = '';
|
|
|
|
public function __construct($player) {
|
|
if (!$player) return;
|
|
|
|
$this->login = $player['Login'];
|
|
$this->maxRank = $player['MaxRank'];
|
|
$this->banned = $player['Banned'];
|
|
$this->optionsEnabled = $player['OptionsEnabled'];
|
|
$this->options = $player['Options'];
|
|
}
|
|
|
|
/**
|
|
* Construct a new Player by its login and maxRank
|
|
*
|
|
* @param $login
|
|
* @param $maxRank
|
|
*/
|
|
public function constructNewPlayer($login, $maxRank) {
|
|
$this->login = $login;
|
|
$this->maxRank = $maxRank;
|
|
}
|
|
}
|