improved plugin properties and test plugin
This commit is contained in:
parent
77420d4d04
commit
60510bf8c3
@ -30,28 +30,36 @@ abstract class Plugin {
|
|||||||
*
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public abstract function getAuthor();
|
public function getAuthor() {
|
||||||
|
return $this->author;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get plugin version
|
* Get plugin version
|
||||||
*
|
*
|
||||||
* @return float
|
* @return float
|
||||||
*/
|
*/
|
||||||
public abstract function getVersion();
|
public abstract function getVersion() {
|
||||||
|
return $this->version;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get plugin name
|
* Get plugin name
|
||||||
*
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public abstract function getName();
|
public abstract function getName() {
|
||||||
|
return $this->name;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get plugin description
|
* Get plugin description
|
||||||
*
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public abstract function getDescription();
|
public abstract function getDescription() {
|
||||||
|
return $this->description;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -3,33 +3,14 @@
|
|||||||
namespace ManiaControl;
|
namespace ManiaControl;
|
||||||
|
|
||||||
class TestPlugin extends Plugin {
|
class TestPlugin extends Plugin {
|
||||||
const AUTHOR = 'steeffeen';
|
|
||||||
const NAME = 'Test Plugin';
|
|
||||||
const VERSION = '1.0';
|
|
||||||
const DESCRIPTION = 'Test Plugin';
|
|
||||||
|
|
||||||
public function __construct(ManiaControl $maniaControl) {
|
public function __construct(ManiaControl $maniaControl) {
|
||||||
$this->maniaControl = $maniaControl;
|
$this->maniaControl = $maniaControl;
|
||||||
}
|
|
||||||
|
|
||||||
|
$this->author = 'steeffeen';
|
||||||
|
$this->name = 'Test Plugin';
|
||||||
|
$this->version = '1.0';
|
||||||
//abstract Methods from ParentClass (do not change them!)
|
$this->description = 'Dummy plugin for testing plugin handling';
|
||||||
public function getAuthor() {
|
|
||||||
return self::AUTHOR;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getName() {
|
|
||||||
return self::NAME;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getVersion() {
|
|
||||||
return self::VERSION;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getDescription() {
|
|
||||||
return self::DESCRIPTION;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user