TrackManiaControl/application/plugins/testPlugin.php
2013-11-10 11:35:07 +01:00

37 lines
609 B
PHP

<?php
namespace ManiaControl;
class TestPlugin extends Plugin {
const AUTHOR = 'steeffeen';
const NAME = 'Test Plugin';
const VERSION = '1.0';
const DESCRIPTION = 'Test Plugin';
public function __construct(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl;
}
//abstract Methods from ParentClass (do not change them!)
public function getAuthor() {
return self::AUTHOR;
}
public function getName() {
return self::NAME;
}
public function getVersion() {
return self::VERSION;
}
public function getDescription() {
return self::DESCRIPTION;
}
}
?>