changed construcor in plugin class
This commit is contained in:
parent
a471051b39
commit
4a0ed1836d
@ -22,15 +22,14 @@ namespace ManiaControl;
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
public function __construct($mControl, $name){
|
public function __construct($mControl, $name, $version = 0, $author = '', $updateUrl = ''){
|
||||||
$this->mControl = $mControl;
|
$this->mControl = $mControl;
|
||||||
$this->name = $name;
|
$this->name = $name;
|
||||||
$this->version = 0;
|
$this->version = $version;
|
||||||
$this->author = '';
|
$this->author = $author;
|
||||||
$this->updateUrl = '';
|
$this->updateUrl = $updateUrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Reserves manialinks on the ManialinkIdHandler
|
* Reserves manialinks on the ManialinkIdHandler
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user