2011-12-27 13:32:28 +00:00
|
|
|
<?php
|
2013-01-26 21:46:54 +00:00
|
|
|
namespace chat\system\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
|
2013-01-19 19:36:40 +00:00
|
|
|
* @copyright 2010-2013 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>
|
2013-01-19 19:36:40 +00:00
|
|
|
* @package be.bastelstu.chat
|
2012-03-24 21:37:47 +00:00
|
|
|
* @subpackage system.chat.command.commands
|
2011-12-27 13:32:28 +00:00
|
|
|
*/
|
2013-01-26 21:46:54 +00:00
|
|
|
class MeCommand extends \chat\system\command\AbstractCommand {
|
|
|
|
public $enableSmilies = \chat\system\command\ICommand::SMILEY_USER;
|
2011-12-27 13:32:28 +00:00
|
|
|
|
2013-01-26 21:46:54 +00:00
|
|
|
public function __construct(\chat\system\command\CommandHandler $commandHandler) {
|
2012-03-24 21:29:07 +00:00
|
|
|
parent::__construct($commandHandler);
|
|
|
|
|
|
|
|
$this->didInit();
|
|
|
|
}
|
|
|
|
|
2011-12-27 13:32:28 +00:00
|
|
|
/**
|
2013-01-26 21:46:54 +00:00
|
|
|
* @see \chat\system\command\ICommand::getType()
|
2011-12-27 13:32:28 +00:00
|
|
|
*/
|
|
|
|
public function getType() {
|
2013-01-27 20:58:10 +00:00
|
|
|
return \chat\data\message\Message::TYPE_ME;
|
2011-12-27 13:32:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-01-26 21:46:54 +00:00
|
|
|
* @see \chat\system\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
|
|
|
}
|
|
|
|
}
|