2014-01-11 18:51:07 +01:00
|
|
|
<?php
|
2014-01-11 20:01:03 +01:00
|
|
|
|
|
|
|
namespace ManiaControl\Plugins;
|
|
|
|
|
|
|
|
use FML\Controls\Control;
|
|
|
|
use FML\Controls\Frame;
|
|
|
|
use FML\Controls\Gauge;
|
2014-01-11 20:52:29 +01:00
|
|
|
use FML\Controls\Label;
|
|
|
|
use FML\Controls\Labels\Label_Button;
|
2014-01-11 20:01:03 +01:00
|
|
|
use FML\Controls\Labels\Label_Text;
|
|
|
|
use FML\Controls\Quad;
|
2014-01-11 20:52:29 +01:00
|
|
|
use FML\Controls\Quads\Quad_BgsPlayerCard;
|
2014-01-11 20:01:03 +01:00
|
|
|
use FML\ManiaLink;
|
|
|
|
use ManiaControl\Callbacks\CallbackListener;
|
|
|
|
use ManiaControl\Callbacks\CallbackManager;
|
|
|
|
use ManiaControl\ColorUtil;
|
|
|
|
use ManiaControl\Commands\CommandListener;
|
|
|
|
use ManiaControl\ManiaControl;
|
2014-01-11 20:52:29 +01:00
|
|
|
use ManiaControl\Manialinks\ManialinkPageAnswerListener;
|
2014-01-11 20:01:03 +01:00
|
|
|
use ManiaControl\Players\Player;
|
|
|
|
|
|
|
|
|
2014-01-11 18:51:07 +01:00
|
|
|
/**
|
2014-01-11 20:01:03 +01:00
|
|
|
* ManiaControl Chat-Message Plugin
|
|
|
|
*
|
|
|
|
* @author kremsy and steeffeen
|
2014-01-11 18:51:07 +01:00
|
|
|
*/
|
2014-01-11 20:52:29 +01:00
|
|
|
class CustomVotesPlugin implements CommandListener, CallbackListener, ManialinkPageAnswerListener, Plugin {
|
2014-01-11 20:01:03 +01:00
|
|
|
/**
|
|
|
|
* Constants
|
|
|
|
*/
|
|
|
|
const PLUGIN_ID = 9;
|
|
|
|
const PLUGIN_VERSION = 0.1;
|
|
|
|
const PLUGIN_NAME = 'CustomVotesPlugin';
|
|
|
|
const PLUGIN_AUTHOR = 'kremsy and steeffeen';
|
2014-01-11 18:51:07 +01:00
|
|
|
|
2014-01-11 22:06:52 +01:00
|
|
|
const SETTING_WIDGET_POSX = 'Widget-Position: X';
|
|
|
|
const SETTING_WIDGET_POSY = 'Widget-Position: Y';
|
|
|
|
const SETTING_WIDGET_WIDTH = 'Widget-Size: Width';
|
|
|
|
const SETTING_WIDGET_HEIGHT = 'Widget-Size: Height';
|
|
|
|
const SETTING_VOTE_TIME = 'Voting Time';
|
|
|
|
const SETTING_DEFAULT_RATIO = 'Default Success Ratio';
|
|
|
|
const SETTING_SPECTATOR_ALLOW_VOTE = 'Allow Specators to vote';
|
|
|
|
const SETTING_SPECTATOR_ALLOW_START_VOTE = 'Allow Specators to start a vote';
|
|
|
|
|
2014-01-11 20:01:03 +01:00
|
|
|
const MLID_WIDGET = 'CustomVotesPlugin.WidgetId';
|
|
|
|
|
2014-01-11 20:52:29 +01:00
|
|
|
const VOTE_FOR_ACTION = '1';
|
2014-01-11 20:01:03 +01:00
|
|
|
const VOTE_AGAINST_ACTION = '-1';
|
|
|
|
|
2014-01-11 20:52:29 +01:00
|
|
|
const ACTION_POSITIVE_VOTE = 'CustomVotesPlugin.PositivVote';
|
|
|
|
const ACTION_NEGATIVE_VOTE = 'CustomVotesPlugin.NegativeVote';
|
|
|
|
|
2014-01-11 20:01:03 +01:00
|
|
|
/**
|
|
|
|
* Private properties
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @var maniaControl $maniaControl
|
|
|
|
*/
|
|
|
|
private $maniaControl = null;
|
|
|
|
private $voteCommands = array();
|
|
|
|
private $currentVote = '';
|
|
|
|
private $currentVoteExpireTime = 0;
|
|
|
|
private $playersVoted = array();
|
2014-01-11 20:52:29 +01:00
|
|
|
private $playersVotedPositiv = 0;
|
2014-01-11 22:06:52 +01:00
|
|
|
/** @var Player $voter */
|
|
|
|
private $voter = null;
|
2014-01-11 20:01:03 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Load the plugin
|
|
|
|
*
|
|
|
|
* @param \ManiaControl\ManiaControl $maniaControl
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function load(ManiaControl $maniaControl) {
|
|
|
|
$this->maniaControl = $maniaControl;
|
|
|
|
|
|
|
|
$this->defineVote("bal");
|
|
|
|
|
|
|
|
$this->maniaControl->commandManager->registerCommandListener('vote', $this, 'chat_vote');
|
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MC_1_SECOND, $this, 'handle1Second');
|
2014-01-11 20:52:29 +01:00
|
|
|
$this->maniaControl->manialinkManager->registerManialinkPageAnswerListener(self::ACTION_POSITIVE_VOTE, $this, 'handlePositiveVote');
|
|
|
|
$this->maniaControl->manialinkManager->registerManialinkPageAnswerListener(self::ACTION_NEGATIVE_VOTE, $this, 'handleNegativeVote');
|
2014-01-11 22:06:52 +01:00
|
|
|
|
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MP_PLAYERMANIALINKPAGEANSWER, $this, 'handleManialinkPageAnswer');
|
|
|
|
|
|
|
|
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_WIDGET_POSX, 160 - 42 - 15);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_WIDGET_POSY, 90 - 2 - 15);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_WIDGET_WIDTH, 30);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_WIDGET_HEIGHT, 25);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_DEFAULT_RATIO, 0.65);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_SPECTATOR_ALLOW_VOTE, false);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_SPECTATOR_ALLOW_START_VOTE, false);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_VOTE_TIME, 60);
|
|
|
|
|
2014-01-11 20:01:03 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unload the plugin and its resources
|
|
|
|
*/
|
|
|
|
public function unload() {
|
|
|
|
$this->maniaControl->commandManager->unregisterCommandListener($this);
|
|
|
|
unset($this->maniaControl);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Chat Vote
|
|
|
|
*
|
|
|
|
* @param array $chat
|
|
|
|
* @param Player $player
|
|
|
|
*/
|
|
|
|
public function chat_vote(array $chat, Player $player) {
|
|
|
|
$command = explode(" ", $chat[1][2]);
|
|
|
|
if(isset($command[1])) {
|
|
|
|
|
|
|
|
$this->startVote($player, strtolower($command[1]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-11 20:52:29 +01:00
|
|
|
|
2014-01-11 22:06:52 +01:00
|
|
|
public function handleManialinkPageAnswer(array $callback){
|
|
|
|
var_dump($callback);
|
|
|
|
}
|
2014-01-11 20:01:03 +01:00
|
|
|
/**
|
|
|
|
* Defines a Vote
|
|
|
|
*
|
|
|
|
* @param $voteName
|
|
|
|
*/
|
|
|
|
public function defineVote($voteName, $neededRatio = 0.65) {
|
|
|
|
$this->voteCommands[strtolower($voteName)] = $voteName;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Starts a vote
|
|
|
|
*
|
2014-01-11 22:06:52 +01:00
|
|
|
* @param \ManiaControl\Players\Player $player
|
|
|
|
* @param $voteName
|
2014-01-11 20:01:03 +01:00
|
|
|
*/
|
2014-01-11 22:06:52 +01:00
|
|
|
public function startVote(Player $player, $voteName) {
|
2014-01-11 20:01:03 +01:00
|
|
|
if($this->maniaControl->playerManager->playerActions->isPlayerMuted($player)) {
|
|
|
|
return;
|
|
|
|
}
|
2014-01-11 22:06:52 +01:00
|
|
|
|
|
|
|
if($player->isSpectator && !$this->maniaControl->settingManager->getSetting($this, self::SETTING_SPECTATOR_ALLOW_START_VOTE)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-01-11 20:01:03 +01:00
|
|
|
$this->maniaControl->chat->sendChat("Vote started");
|
|
|
|
$this->currentVote = $voteName;
|
2014-01-11 20:52:29 +01:00
|
|
|
$this->currentVoteExpireTime = time() + 60; //TODO as setting
|
2014-01-11 20:01:03 +01:00
|
|
|
|
|
|
|
$this->playersVoted[$player->login] = self::VOTE_FOR_ACTION;
|
2014-01-11 20:52:29 +01:00
|
|
|
$this->playersVotedPositiv++;
|
2014-01-11 22:06:52 +01:00
|
|
|
|
|
|
|
$this->voter = $player;
|
2014-01-11 20:52:29 +01:00
|
|
|
}
|
|
|
|
|
2014-01-11 22:06:52 +01:00
|
|
|
/**
|
|
|
|
* Handles a Positive Vote
|
|
|
|
*
|
|
|
|
* @param array $callback
|
|
|
|
* @param Player $player
|
|
|
|
*/
|
2014-01-11 20:52:29 +01:00
|
|
|
public function handlePositiveVote(array $callback, Player $player) {
|
2014-01-11 22:06:52 +01:00
|
|
|
if($player->isSpectator && !$this->maniaControl->settingManager->getSetting($this, self::SETTING_SPECTATOR_ALLOW_VOTE)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(isset($this->playersVoted[$player->login])) {
|
|
|
|
if($this->playersVoted[$player->login] == self::VOTE_AGAINST_ACTION) {
|
2014-01-11 20:52:29 +01:00
|
|
|
$this->playersVoted[$player->login] = self::VOTE_FOR_ACTION;
|
|
|
|
$this->playersVotedPositiv++;
|
|
|
|
}
|
2014-01-11 22:06:52 +01:00
|
|
|
} else {
|
2014-01-11 20:52:29 +01:00
|
|
|
$this->playersVoted[$player->login] = self::VOTE_FOR_ACTION;
|
|
|
|
$this->playersVotedPositiv++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-11 22:06:52 +01:00
|
|
|
/**
|
|
|
|
* Handles a negative Vote
|
|
|
|
*
|
|
|
|
* @param array $callback
|
|
|
|
* @param Player $player
|
|
|
|
*/
|
2014-01-11 20:52:29 +01:00
|
|
|
public function handleNegativeVote(array $callback, Player $player) {
|
2014-01-11 22:06:52 +01:00
|
|
|
if($player->isSpectator && !$this->maniaControl->settingManager->getSetting($this, self::SETTING_SPECTATOR_ALLOW_VOTE)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(isset($this->playersVoted[$player->login])) {
|
|
|
|
if($this->playersVoted[$player->login] == self::VOTE_FOR_ACTION) {
|
2014-01-11 20:52:29 +01:00
|
|
|
$this->playersVoted[$player->login] = self::VOTE_AGAINST_ACTION;
|
|
|
|
$this->playersVotedPositiv--;
|
|
|
|
}
|
2014-01-11 22:06:52 +01:00
|
|
|
} else {
|
2014-01-11 20:52:29 +01:00
|
|
|
$this->playersVoted[$player->login] = self::VOTE_AGAINST_ACTION;
|
|
|
|
}
|
2014-01-11 20:01:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle ManiaControl 1 Second callback
|
|
|
|
*
|
|
|
|
* @param array $callback
|
|
|
|
*/
|
|
|
|
public function handle1Second(array $callback) {
|
|
|
|
if($this->currentVote == '') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-01-11 20:52:29 +01:00
|
|
|
$votePercentage = $this->playersVotedPositiv / count($this->playersVoted);
|
|
|
|
|
2014-01-11 20:01:03 +01:00
|
|
|
$timeUntilExpire = $this->currentVoteExpireTime - time();
|
2014-01-11 20:52:29 +01:00
|
|
|
$this->showVoteWidget($timeUntilExpire, $votePercentage);
|
2014-01-11 20:01:03 +01:00
|
|
|
|
|
|
|
if($timeUntilExpire <= 0) {
|
|
|
|
$this->maniaControl->chat->sendChat("Vote finished");
|
|
|
|
$this->currentVote = '';
|
|
|
|
|
|
|
|
$emptyManialink = new ManiaLink(self::MLID_WIDGET);
|
|
|
|
$manialinkText = $emptyManialink->render()->saveXML();
|
|
|
|
$this->maniaControl->manialinkManager->sendManialink($manialinkText);
|
2014-01-11 22:06:52 +01:00
|
|
|
|
|
|
|
$voter = null;
|
2014-01-11 20:01:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-11 20:52:29 +01:00
|
|
|
private function showVoteWidget($timeUntilExpire, $votePercentage) {
|
2014-01-11 22:06:52 +01:00
|
|
|
$pos_x = $this->maniaControl->settingManager->getSetting($this, self::SETTING_WIDGET_POSX);
|
|
|
|
$pos_y = $this->maniaControl->settingManager->getSetting($this, self::SETTING_WIDGET_POSY);
|
|
|
|
$width = $this->maniaControl->settingManager->getSetting($this, self::SETTING_WIDGET_WIDTH);
|
|
|
|
$height = $this->maniaControl->settingManager->getSetting($this, self::SETTING_WIDGET_HEIGHT);
|
2014-01-11 20:01:03 +01:00
|
|
|
|
|
|
|
$quadStyle = $this->maniaControl->manialinkManager->styleManager->getDefaultQuadStyle();
|
|
|
|
$quadSubstyle = $this->maniaControl->manialinkManager->styleManager->getDefaultQuadSubstyle();
|
|
|
|
$labelStyle = $this->maniaControl->manialinkManager->styleManager->getDefaultLabelStyle();
|
|
|
|
|
|
|
|
$maniaLink = new ManiaLink(self::MLID_WIDGET);
|
2014-01-11 22:06:52 +01:00
|
|
|
|
2014-01-11 20:52:29 +01:00
|
|
|
//$script = new Script();
|
|
|
|
//$maniaLink->setScript($script);
|
2014-01-11 20:01:03 +01:00
|
|
|
|
|
|
|
// mainframe
|
|
|
|
$frame = new Frame();
|
|
|
|
$maniaLink->add($frame);
|
|
|
|
$frame->setSize($width, $height);
|
|
|
|
$frame->setPosition($pos_x, $pos_y);
|
|
|
|
|
|
|
|
// Background Quad
|
|
|
|
$backgroundQuad = new Quad();
|
|
|
|
$frame->add($backgroundQuad);
|
|
|
|
$backgroundQuad->setSize($width, $height);
|
|
|
|
$backgroundQuad->setStyles($quadStyle, $quadSubstyle);
|
|
|
|
|
2014-01-11 22:06:52 +01:00
|
|
|
/*$keyQuad = new Quad();
|
|
|
|
$frame->add($keyQuad);
|
|
|
|
$keyQuad->setPosition(500,500);
|
|
|
|
$keyQuad->setAction(382009003);*/
|
|
|
|
|
|
|
|
|
2014-01-11 20:01:03 +01:00
|
|
|
$label = new Label_Text();
|
|
|
|
$frame->add($label);
|
|
|
|
$label->setY($height / 2 - 4);
|
|
|
|
$label->setAlign(Control::CENTER, Control::CENTER);
|
|
|
|
$label->setSize($width - 5, $height);
|
2014-01-11 22:06:52 +01:00
|
|
|
$label->setTextSize(1.3);
|
|
|
|
$label->setText('Vote for ' . $this->currentVote);
|
|
|
|
//$label->setTextColor("900");
|
2014-01-11 20:01:03 +01:00
|
|
|
|
2014-01-11 22:06:52 +01:00
|
|
|
/*$label = new Label_Text();
|
2014-01-11 20:01:03 +01:00
|
|
|
$frame->add($label);
|
2014-01-11 20:52:29 +01:00
|
|
|
$label->setY($height / 2 - 7);
|
2014-01-11 20:01:03 +01:00
|
|
|
$label->setAlign(Control::CENTER, Control::CENTER);
|
|
|
|
$label->setSize($width - 5, $height);
|
|
|
|
$label->setTextSize(1.3);
|
|
|
|
$label->setText($this->currentVote);
|
2014-01-11 22:06:52 +01:00
|
|
|
$label->setTextColor("F00");*/
|
2014-01-11 20:01:03 +01:00
|
|
|
|
2014-01-11 22:06:52 +01:00
|
|
|
//Started by nick
|
2014-01-11 20:01:03 +01:00
|
|
|
$label = new Label_Text();
|
|
|
|
$frame->add($label);
|
2014-01-11 22:06:52 +01:00
|
|
|
$label->setY($height / 2 - 7);
|
2014-01-11 20:01:03 +01:00
|
|
|
$label->setAlign(Control::CENTER, Control::CENTER);
|
2014-01-11 22:06:52 +01:00
|
|
|
$label->setSize($width - 5, 2);
|
|
|
|
$label->setTextSize(1);
|
|
|
|
$label->setTextColor("F80");
|
|
|
|
$label->setText("Started by " . $this->voter->nickname);
|
2014-01-11 20:01:03 +01:00
|
|
|
|
|
|
|
|
2014-01-11 20:52:29 +01:00
|
|
|
//Time Gaunge
|
|
|
|
$timeGauge = new Gauge();
|
|
|
|
$frame->add($timeGauge);
|
2014-01-11 22:06:52 +01:00
|
|
|
$timeGauge->setY(0);
|
2014-01-11 20:52:29 +01:00
|
|
|
$timeGauge->setSize($width * 0.95, 6);
|
|
|
|
$timeGauge->setDrawBg(false);
|
|
|
|
$maxTime = 60; //TODO set maxtime
|
|
|
|
$timeGaugeRatio = (100 / $maxTime * $timeUntilExpire) / 100;
|
|
|
|
$timeGauge->setRatio($timeGaugeRatio + 0.15 - $timeGaugeRatio * 0.15);
|
|
|
|
$gaugeColor = ColorUtil::floatToStatusColor($timeGaugeRatio);
|
|
|
|
$timeGauge->setColor($gaugeColor . '9');
|
2014-01-11 20:01:03 +01:00
|
|
|
|
2014-01-11 22:06:52 +01:00
|
|
|
//Time Left
|
|
|
|
$label = new Label_Text();
|
|
|
|
$frame->add($label);
|
|
|
|
$label->setY(-2);
|
|
|
|
$label->setAlign(Control::CENTER, Control::CENTER);
|
|
|
|
$label->setSize($width - 5, $height);
|
|
|
|
$label->setTextSize(1.3);
|
|
|
|
$label->setText("Time left: " . $timeUntilExpire . "s");
|
|
|
|
$label->setTextColor("FFF");
|
|
|
|
|
2014-01-11 20:52:29 +01:00
|
|
|
//Vote Gauge
|
2014-01-11 20:01:03 +01:00
|
|
|
$voteGauge = new Gauge();
|
|
|
|
$frame->add($voteGauge);
|
|
|
|
$voteGauge->setY($height / 2 - 20);
|
2014-01-11 20:52:29 +01:00
|
|
|
$voteGauge->setSize($width * 0.65, 12);
|
2014-01-11 20:01:03 +01:00
|
|
|
$voteGauge->setDrawBg(false);
|
2014-01-11 20:52:29 +01:00
|
|
|
$voteGauge->setRatio($votePercentage + 0.15 - $votePercentage * 0.15);
|
|
|
|
$gaugeColor = ColorUtil::floatToStatusColor($votePercentage);
|
2014-01-11 20:01:03 +01:00
|
|
|
$voteGauge->setColor($gaugeColor . '9');
|
|
|
|
|
|
|
|
|
2014-01-11 20:52:29 +01:00
|
|
|
$voteLabel = new Label();
|
|
|
|
$frame->add($voteLabel);
|
|
|
|
$voteLabel->setY($height / 2 - 20.4);
|
|
|
|
$voteLabel->setSize($width * 0.65, 12);
|
|
|
|
$voteLabel->setStyle($labelStyle);
|
|
|
|
$voteLabel->setTextSize(1);
|
|
|
|
$voteLabel->setText(' ' . round($votePercentage * 100.) . '% (' . count($this->playersVoted) . ')');
|
|
|
|
|
|
|
|
// Mute Player
|
|
|
|
$y = $height / 2 - 20.4;
|
|
|
|
$quad = new Quad_BgsPlayerCard();
|
|
|
|
$frame->add($quad);
|
|
|
|
$quad->setX(-$width / 2 + 4);
|
|
|
|
$quad->setY($y);
|
|
|
|
$quad->setSubStyle($quad::SUBSTYLE_BgPlayerCardBig);
|
|
|
|
$quad->setSize(5, 5);
|
|
|
|
$quad->setAction(self::ACTION_NEGATIVE_VOTE);
|
|
|
|
|
|
|
|
$label = new Label_Button();
|
|
|
|
$frame->add($label);
|
|
|
|
$label->setX(-$width / 2 + 4);
|
|
|
|
$label->setAlign(Control::CENTER, Control::CENTER);
|
|
|
|
$label->setY($y);
|
|
|
|
$label->setStyle($labelStyle);
|
|
|
|
$label->setTextSize(1);
|
2014-01-11 22:06:52 +01:00
|
|
|
$label->setSize(3, 3);
|
2014-01-11 20:52:29 +01:00
|
|
|
$label->setTextColor("F00");
|
|
|
|
$label->setText("F1");
|
2014-01-11 20:01:03 +01:00
|
|
|
|
2014-01-11 20:52:29 +01:00
|
|
|
$quad = clone $quad;
|
|
|
|
$frame->add($quad);
|
|
|
|
$quad->setX($width / 2 - 4);
|
|
|
|
$quad->setAction(self::ACTION_POSITIVE_VOTE);
|
2014-01-11 20:01:03 +01:00
|
|
|
|
2014-01-11 20:52:29 +01:00
|
|
|
$label = clone $label;
|
|
|
|
$frame->add($label);
|
|
|
|
$label->setX($width / 2 - 4);
|
|
|
|
$label->setTextColor("0F0");
|
|
|
|
$label->setText("F2");
|
2014-01-11 20:01:03 +01:00
|
|
|
|
|
|
|
// Send manialink
|
|
|
|
$manialinkText = $maniaLink->render()->saveXML();
|
|
|
|
$this->maniaControl->manialinkManager->sendManialink($manialinkText);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get plugin id
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public static function getId() {
|
|
|
|
return self::PLUGIN_ID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get Plugin Name
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function getName() {
|
|
|
|
return self::PLUGIN_NAME;
|
|
|
|
}
|
2014-01-11 18:51:07 +01:00
|
|
|
|
2014-01-11 20:01:03 +01:00
|
|
|
/**
|
|
|
|
* Get Plugin Version
|
|
|
|
*
|
|
|
|
* @return float,,
|
|
|
|
*/
|
|
|
|
public static function getVersion() {
|
|
|
|
return self::PLUGIN_VERSION;
|
|
|
|
}
|
2014-01-11 18:51:07 +01:00
|
|
|
|
2014-01-11 20:01:03 +01:00
|
|
|
/**
|
|
|
|
* Get Plugin Author
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function getAuthor() {
|
|
|
|
return self::PLUGIN_AUTHOR;
|
|
|
|
}
|
2014-01-11 18:51:07 +01:00
|
|
|
|
2014-01-11 20:01:03 +01:00
|
|
|
/**
|
|
|
|
* Get Plugin Description
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function getDescription() {
|
|
|
|
return null;
|
|
|
|
}
|
2014-01-11 18:51:07 +01:00
|
|
|
}
|