grr this gitclient sucks

This commit is contained in:
kremsy
2013-11-09 10:46:45 +01:00
parent 0bad97e119
commit 93049af972
21 changed files with 2994 additions and 0 deletions

View File

@ -0,0 +1,37 @@
<?php
namespace mControl;
/**
* Abstract mControl 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() {
}
}
?>