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/MeCommand.class.php

39 lines
1012 B
PHP
Raw Normal View History

2011-12-27 13:32:28 +00:00
<?php
namespace chat\system\command\commands;
2011-12-27 13:32:28 +00:00
/**
* 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
* @subpackage system.chat.command.commands
2011-12-27 13:32:28 +00:00
*/
class MeCommand extends \chat\system\command\AbstractCommand {
2013-05-23 23:40:56 +00:00
/**
* @see \chat\system\command\AbstractCommand::$enableSmilies
*/
2013-02-01 21:44:43 +00:00
public $enableSmilies = self::SETTING_USER;
2011-12-27 13:32:28 +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
/**
* @see \chat\system\command\ICommand::getType()
2011-12-27 13:32:28 +00:00
*/
public function getType() {
return \chat\data\message\Message::TYPE_ME;
2011-12-27 13:32:28 +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
}
}