d2744a5157
- cleaned up database class - plugin and plugin handler class - improved player and player handler classes - other cleanup and improvements
29 lines
433 B
PHP
29 lines
433 B
PHP
<?php
|
|
|
|
namespace ManiaControl;
|
|
|
|
class TestPlugin extends Plugin {
|
|
|
|
public function __construct(ManiaControl $maniaControl) {
|
|
$this->maniaControl = $maniaControl;
|
|
}
|
|
|
|
public function getAuthor() {
|
|
return 'steeffeen';
|
|
}
|
|
|
|
public function getName() {
|
|
return 'Test Plugin';
|
|
}
|
|
|
|
public function getVersion() {
|
|
return '1.0';
|
|
}
|
|
|
|
public function getDescription() {
|
|
return 'Dummy plugin for testing plugin handling';
|
|
}
|
|
}
|
|
|
|
?>
|