2017-03-23 20:52:23 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace ManiaControl\Callbacks\Structures\ManiaPlanet;
|
|
|
|
|
|
|
|
|
2017-03-30 19:49:45 +02:00
|
|
|
use ManiaControl\Callbacks\Structures\Common\BaseStructure;
|
2017-03-23 20:52:23 +01:00
|
|
|
use ManiaControl\ManiaControl;
|
|
|
|
|
2017-03-24 16:49:54 +01:00
|
|
|
/**
|
|
|
|
* Structure Class for the Default Start Server Callback
|
|
|
|
*
|
2017-04-07 23:26:35 +02:00
|
|
|
* @api
|
2017-03-24 16:49:54 +01:00
|
|
|
* @author ManiaControl Team <mail@maniacontrol.com>
|
|
|
|
* @copyright 2014-2017 ManiaControl Team
|
|
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
|
|
|
*/
|
2017-03-23 20:55:20 +01:00
|
|
|
class StartServerStructure extends BaseStructure {
|
2017-03-26 12:42:20 +02:00
|
|
|
private $restarted;
|
2017-03-24 16:49:54 +01:00
|
|
|
|
2017-04-07 23:26:35 +02:00
|
|
|
/**
|
|
|
|
* StartServerStructure constructor.
|
|
|
|
*
|
|
|
|
* @param \ManiaControl\ManiaControl $maniaControl
|
|
|
|
* @param $data
|
|
|
|
*/
|
2017-03-23 20:52:23 +01:00
|
|
|
public function __construct(ManiaControl $maniaControl, $data) {
|
2017-03-23 21:01:44 +01:00
|
|
|
parent::__construct($maniaControl, $data);
|
|
|
|
|
2017-03-24 16:49:54 +01:00
|
|
|
$this->restarted = $this->getPlainJsonObject()->restarted;
|
|
|
|
}
|
2017-03-23 20:52:23 +01:00
|
|
|
|
2017-03-24 16:49:54 +01:00
|
|
|
/**
|
2017-03-26 12:42:20 +02:00
|
|
|
* Flag if the Server got Restarted
|
|
|
|
*
|
2017-04-07 23:26:35 +02:00
|
|
|
* @api
|
2017-03-24 16:49:54 +01:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getRestarted() {
|
|
|
|
return $this->restarted;
|
2017-03-23 20:52:23 +01:00
|
|
|
}
|
|
|
|
}
|