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

37 lines
948 B
PHP
Raw Normal View History

2012-02-04 11:32:56 +00:00
<?php
namespace chat\system\command\commands;
2012-02-04 11:32:56 +00:00
/**
* Sends a message that starts with a slash.
*
* @author Tim Düsterhus
2013-01-19 19:36:40 +00:00
* @copyright 2010-2013 Tim Düsterhus
2012-02-04 11:32:56 +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
2012-02-04 11:32:56 +00:00
*/
class PlainCommand extends \chat\system\command\AbstractCommand {
2013-03-11 16:10:01 +00:00
public $enableSmilies = \chat\system\command\ICommand::SETTING_USER;
2012-02-04 11:32:56 +00:00
/**
* @see \chat\system\command\ICommand::getType()
2012-02-04 11:32:56 +00:00
*/
public function getType() {
return \chat\data\message\Message::TYPE_NORMAL;
2012-02-04 11:32:56 +00:00
}
/**
* @see \chat\system\command\ICommand::getMessage()
2012-02-04 11:32:56 +00:00
*/
public function getMessage() {
return \wcf\util\StringUtil::substring($this->commandHandler->getText(), 1);
}
/**
* @see \chat\system\command\ICommand::getReceiver()
2012-02-04 11:32:56 +00:00
*/
public function getReceiver() {
return null;
}
}