fixed phpdoc
This commit is contained in:
parent
742a061af3
commit
b5a3d7dd57
@ -18,10 +18,9 @@ interface Plugin {
|
|||||||
const PLUGIN_INTERFACE = __CLASS__;
|
const PLUGIN_INTERFACE = __CLASS__;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Prepares the Plugin
|
* Prepare the Plugin
|
||||||
*
|
*
|
||||||
* @param ManiaControl $maniaControl
|
* @param ManiaControl $maniaControl
|
||||||
* @return mixed
|
|
||||||
*/
|
*/
|
||||||
public static function prepare(ManiaControl $maniaControl);
|
public static function prepare(ManiaControl $maniaControl);
|
||||||
|
|
||||||
@ -34,7 +33,7 @@ interface Plugin {
|
|||||||
public function load(ManiaControl $maniaControl);
|
public function load(ManiaControl $maniaControl);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unload the plugin and its resources
|
* Unload the plugin and its Resources
|
||||||
*/
|
*/
|
||||||
public function unload();
|
public function unload();
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ use ManiaControl\Settings\SettingManager;
|
|||||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||||
*/
|
*/
|
||||||
class KarmaPlugin implements CallbackListener, TimerListener, Plugin {
|
class KarmaPlugin implements CallbackListener, TimerListener, Plugin {
|
||||||
/**
|
/*
|
||||||
* Constants
|
* Constants
|
||||||
*/
|
*/
|
||||||
const ID = 2;
|
const ID = 2;
|
||||||
@ -45,7 +45,7 @@ class KarmaPlugin implements CallbackListener, TimerListener, Plugin {
|
|||||||
const SETTING_WIDGET_HEIGHT = 'Widget-Size: Height';
|
const SETTING_WIDGET_HEIGHT = 'Widget-Size: Height';
|
||||||
const STAT_PLAYER_MAPVOTES = 'Voted Maps';
|
const STAT_PLAYER_MAPVOTES = 'Voted Maps';
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* Constants MX Karma
|
* Constants MX Karma
|
||||||
*/
|
*/
|
||||||
const SETTING_WIDGET_DISPLAY_MX = 'Display MX-Karma in Widget';
|
const SETTING_WIDGET_DISPLAY_MX = 'Display MX-Karma in Widget';
|
||||||
@ -58,12 +58,12 @@ class KarmaPlugin implements CallbackListener, TimerListener, Plugin {
|
|||||||
const MX_KARMA_SAVEVOTES = 'saveVotes';
|
const MX_KARMA_SAVEVOTES = 'saveVotes';
|
||||||
const MX_KARMA_GETMAPRATING = 'getMapRating';
|
const MX_KARMA_GETMAPRATING = 'getMapRating';
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* Private properties
|
* Private Properties
|
||||||
*/
|
*/
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @var maniaControl $maniaControl
|
* @var ManiaControl $maniaControl
|
||||||
*/
|
*/
|
||||||
private $maniaControl = null;
|
private $maniaControl = null;
|
||||||
private $updateManialink = false;
|
private $updateManialink = false;
|
||||||
@ -74,10 +74,8 @@ class KarmaPlugin implements CallbackListener, TimerListener, Plugin {
|
|||||||
private $mxKarma = array();
|
private $mxKarma = array();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Prepares the Plugin
|
*
|
||||||
*
|
* @see \ManiaControl\Plugins\Plugin
|
||||||
* @param ManiaControl $maniaControl
|
|
||||||
* @return mixed
|
|
||||||
*/
|
*/
|
||||||
public static function prepare(ManiaControl $maniaControl) {
|
public static function prepare(ManiaControl $maniaControl) {
|
||||||
$maniaControl->settingManager->initSetting(get_class(), self::SETTING_MX_KARMA_ACTIVATED, true);
|
$maniaControl->settingManager->initSetting(get_class(), self::SETTING_MX_KARMA_ACTIVATED, true);
|
||||||
|
Loading…
Reference in New Issue
Block a user