1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-11-01 14:20:07 +00:00
Tims-Chat/file/lib/system/command/commands/RestoreCommand.class.php

58 lines
1.6 KiB
PHP
Raw Normal View History

2012-05-19 21:03:35 +00:00
<?php
namespace chat\system\command\commands;
2012-05-19 21:03:35 +00:00
use \wcf\data\user\User;
2012-10-20 14:23:00 +00:00
use \wcf\system\WCF;
2012-05-19 21:03:35 +00:00
use \wcf\util\ChatUtil;
/**
* Resets the color of a user
*
* @author Tim Düsterhus
2013-01-19 19:36:40 +00:00
* @copyright 2010-2013 Tim Düsterhus
2012-05-19 21:03:35 +00:00
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
2013-01-19 19:36:40 +00:00
* @package be.bastelstu.chat
2012-05-19 21:03:35 +00:00
* @subpackage system.chat.command.commands
*/
class RestoreCommand extends \chat\system\command\AbstractRestrictedCommand {
2012-05-19 21:03:35 +00:00
public $enableHTML = 1;
public $user = null;
public $link = '';
public function __construct(\chat\system\command\CommandHandler $commandHandler) {
2012-05-19 21:03:35 +00:00
parent::__construct($commandHandler);
$this->user = User::getUserByUsername(rtrim($commandHandler->getParameters(), ','));
if (!$this->user->userID) throw new \chat\system\command\UserNotFoundException(rtrim($commandHandler->getParameters(), ','));
2012-05-19 21:03:35 +00:00
2013-01-09 20:34:30 +00:00
$this->link = '<span class="userLink" data-user-id="'.$this->user->userID.'" />';
2012-05-19 21:03:35 +00:00
$this->didInit();
}
2012-10-20 14:23:00 +00:00
/**
* @see \chat\system\command\IRestrictedChatCommand::checkPermission()
2012-10-20 14:23:00 +00:00
*/
public function checkPermission() {
2012-10-20 16:04:46 +00:00
parent::checkPermission();
2012-10-20 14:57:34 +00:00
WCF::getSession()->checkPermissions(array('mod.chat.canRestore'));
2012-10-20 14:23:00 +00:00
}
2012-05-19 21:03:35 +00:00
/**
* @see \chat\system\command\ICommand::getType()
2012-05-19 21:03:35 +00:00
*/
public function getType() {
2012-10-20 16:04:46 +00:00
return \wcf\data\chat\message\ChatMessage::TYPE_MODERATE;
2012-05-19 21:03:35 +00:00
}
/**
* @see \chat\system\command\ICommand::getMessage()
2012-05-19 21:03:35 +00:00
*/
public function getMessage() {
2012-10-20 16:04:46 +00:00
return serialize(array(
'link' => $this->link,
'type' => str_replace(array('chat\system\command\commands\\', 'command'), '', strtolower(get_class($this)))
2012-10-20 16:04:46 +00:00
));
2012-05-19 21:03:35 +00:00
}
}