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

27 lines
673 B
PHP
Raw Normal View History

2011-12-13 22:10:29 +00:00
<?php
namespace wcf\system\chat\commands;
use \wcf\util\StringUtil;
/**
* Inserts a message.
*
* @author Tim Düsterhus
* @copyright 2010-2011 Tim Düsterhus
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
* @package timwolla.wcf.chat
* @subpackage system.chat.commands
*/
class ChatCommandHandler {
const COMMAND_CHAR = '/';
/**
* Checks whether the given text is a command.
*
* @param string $text
* @return boolean
*/
public function isCommand($text) {
return StringUtil::substring($text, 0, StringUtil::length(static::COMMAND_CHAR)) == static::COMMAND_CHAR;
}
}