ka was er da committen will
This commit is contained in:
37
application/plugins/oldstructure/plugin.ManiaControl.php
Normal file
37
application/plugins/oldstructure/plugin.ManiaControl.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace ManiaControl;
|
||||
|
||||
/**
|
||||
* Abstract ManiaControl plugin class
|
||||
*/
|
||||
abstract class Plugin_Name {
|
||||
/**
|
||||
* Constants
|
||||
*/
|
||||
const VERSION = '0.1';
|
||||
|
||||
/**
|
||||
* Private properties
|
||||
*/
|
||||
private $mControl = null;
|
||||
|
||||
/**
|
||||
* Construct plugin
|
||||
*
|
||||
* @param object $mControl
|
||||
*/
|
||||
public function __construct($mControl) {
|
||||
$this->mControl = $mControl;
|
||||
|
||||
error_log('Pugin v' . self::VERSION . ' ready!');
|
||||
}
|
||||
|
||||
/**
|
||||
* Perform actions during each loop
|
||||
*/
|
||||
public function loop() {
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user