2013-11-10 02:55:08 +01:00
|
|
|
<?php
|
2013-11-12 15:48:25 +01:00
|
|
|
use ManiaControl\ManiaControl;
|
|
|
|
use ManiaControl\Plugins\Plugin;
|
2013-11-10 02:55:08 +01:00
|
|
|
|
2013-11-12 15:48:25 +01:00
|
|
|
/**
|
|
|
|
* Basic test plugin
|
|
|
|
*
|
|
|
|
* @author steeffeen
|
|
|
|
*/
|
2013-11-10 02:55:08 +01:00
|
|
|
class TestPlugin extends Plugin {
|
|
|
|
|
|
|
|
public function __construct(ManiaControl $maniaControl) {
|
|
|
|
$this->maniaControl = $maniaControl;
|
2013-11-10 11:49:32 +01:00
|
|
|
|
|
|
|
$this->author = 'steeffeen';
|
|
|
|
$this->name = 'Test Plugin';
|
|
|
|
$this->version = '1.0';
|
|
|
|
$this->description = 'Dummy plugin for testing plugin handling';
|
2013-11-10 02:55:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|