TrackManiaControl/application/plugins/testPlugin.php
Steffen Schröder 9e5e444552 - subfolders for different classes
- Improved file and class naming
- "handler"-> "listener" (callbacks, commands)
2013-11-12 15:48:25 +01:00

23 lines
424 B
PHP

<?php
use ManiaControl\ManiaControl;
use ManiaControl\Plugins\Plugin;
/**
* Basic test plugin
*
* @author steeffeen
*/
class TestPlugin extends Plugin {
public function __construct(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl;
$this->author = 'steeffeen';
$this->name = 'Test Plugin';
$this->version = '1.0';
$this->description = 'Dummy plugin for testing plugin handling';
}
}
?>