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/chat/command/commands/Me.class.php

37 lines
1015 B
PHP
Raw Normal View History

2011-12-27 13:32:28 +00:00
<?php
namespace wcf\system\chat\command\commands;
2011-12-27 13:32:28 +00:00
use \wcf\util\StringUtil;
/**
* Indicates an action. The message is shown without the colon.
*
* @author Tim Düsterhus
2012-01-30 16:48:13 +00:00
* @copyright 2010-2012 Tim Düsterhus
2011-12-27 13:32:28 +00:00
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
* @package timwolla.wcf.chat
* @subpackage system.chat.command.commands
2011-12-27 13:32:28 +00:00
*/
class Me extends \wcf\system\chat\command\AbstractCommand {
public $enableSmilies = \wcf\system\chat\command\ICommand::SMILEY_USER;
2011-12-27 13:32:28 +00:00
public function __construct(\wcf\system\chat\command\CommandHandler $commandHandler) {
2012-03-24 21:29:07 +00:00
parent::__construct($commandHandler);
$this->didInit();
}
2011-12-27 13:32:28 +00:00
/**
* @see \wcf\system\chat\command\ICommand::getType()
2011-12-27 13:32:28 +00:00
*/
public function getType() {
return \wcf\data\chat\message\ChatMessage::TYPE_ME;
}
/**
* @see \wcf\system\chat\command\ICommand::getMessage()
2011-12-27 13:32:28 +00:00
*/
public function getMessage() {
2011-12-27 13:39:42 +00:00
return $this->commandHandler->getParameters();
2011-12-27 13:32:28 +00:00
}
}