39 lines
		
	
	
		
			796 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			796 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Dedimania Player DataStructure
 | |
|  *
 | |
|  * @author kremsy and steeffeen
 | |
|  */
 | |
| namespace Dedimania;
 | |
| 
 | |
| 
 | |
| class DedimaniaPlayer {
 | |
| 	public $login = '';
 | |
| 	public $maxRank = -1;
 | |
| 	public $banned = false;
 | |
| 	public $optionsEnabled = false;
 | |
| 	public $options = '';
 | |
| 
 | |
| 	public function __construct($player) {
 | |
| 		if ($player == null) {
 | |
| 			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;
 | |
| 	}
 | |
| } 
 |