2017-03-22 18:31:53 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace ManiaControl\Callbacks\Structures;
|
|
|
|
|
|
|
|
|
|
|
|
use ManiaControl\ManiaControl;
|
2017-03-26 12:42:20 +02:00
|
|
|
use ReflectionClass;
|
2017-03-22 18:31:53 +01:00
|
|
|
|
2017-03-24 16:49:54 +01:00
|
|
|
/**
|
|
|
|
* Base Structure of all Callback Structures
|
|
|
|
*
|
|
|
|
* @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-26 12:42:20 +02:00
|
|
|
abstract class BaseStructure {
|
2017-03-22 18:31:53 +01:00
|
|
|
/** @var ManiaControl $maniaControl */
|
|
|
|
protected $maniaControl;
|
2017-03-23 21:04:05 +01:00
|
|
|
private $plainJsonObject;
|
2017-03-22 18:31:53 +01:00
|
|
|
|
2017-03-23 21:01:44 +01:00
|
|
|
protected function __construct(ManiaControl $maniaControl, $data) {
|
2017-03-23 21:04:05 +01:00
|
|
|
$this->maniaControl = $maniaControl;
|
|
|
|
$this->plainJsonObject = json_decode($data[0]);
|
2017-03-23 20:39:32 +01:00
|
|
|
}
|
2017-03-23 21:19:03 +01:00
|
|
|
|
2017-03-23 20:39:32 +01:00
|
|
|
/**
|
|
|
|
* Gets the Plain Json
|
|
|
|
*/
|
2017-03-23 21:04:05 +01:00
|
|
|
public function getPlainJsonObject() {
|
|
|
|
return $this->plainJsonObject;
|
2017-03-23 20:39:32 +01:00
|
|
|
}
|
2017-03-23 20:43:23 +01:00
|
|
|
|
2017-03-22 18:31:53 +01:00
|
|
|
/**
|
2017-03-26 12:42:20 +02:00
|
|
|
* Gets Information about the Class, and a List of the Public Method
|
2017-03-22 18:31:53 +01:00
|
|
|
*/
|
2017-03-26 12:42:20 +02:00
|
|
|
public function getUsage() {
|
|
|
|
$reflection = new ReflectionClass(get_class($this));
|
|
|
|
echo $reflection->getDocComment();
|
|
|
|
|
|
|
|
echo "\nStructure Name of Class = " . get_class($this);
|
|
|
|
|
|
|
|
echo "\nMethods:\n";
|
|
|
|
|
|
|
|
$metody = $reflection->getMethods();
|
|
|
|
$methods = array_reverse($metody);
|
|
|
|
foreach ($methods as $key => $value) {
|
|
|
|
/** @var \ReflectionMethod $value */
|
|
|
|
//Don't print the Constructor
|
|
|
|
if ($value->isPublic() && $value->getName() != "__construct" && $value->getName() != "getUsage") {
|
|
|
|
echo "\n\n";
|
|
|
|
$txt = preg_replace('/\t/', '', $value->getDocComment());
|
|
|
|
|
|
|
|
echo $txt;
|
|
|
|
echo "\n \$result = " . $value->getName() . "();";
|
|
|
|
$parameters = $value->getParameters();
|
|
|
|
|
|
|
|
foreach ($parameters as $parameter) {
|
|
|
|
echo "\n" . $parameter;
|
|
|
|
}
|
|
|
|
echo "\n";
|
|
|
|
}
|
|
|
|
}
|
2017-03-22 18:31:53 +01:00
|
|
|
}
|
|
|
|
}
|