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

61 lines
1.4 KiB
PHP
Raw Normal View History

<?php
namespace wcf\system\chat\command;
use \wcf\system\event\EventHandler;
/**
* Default implementation for commands.
*
* @author Tim Düsterhus
2012-01-30 16:48:13 +00:00
* @copyright 2010-2012 Tim Düsterhus
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
* @package be.bastelstu.wcf.chat
* @subpackage system.chat.command
*/
abstract class AbstractCommand implements ICommand {
2012-06-04 19:22:14 +00:00
/**
* Instance of the CommandHandler
*
* @var \wcf\system\chat\command\CommandHandler
*/
public $commandHandler = null;
2012-06-04 19:22:14 +00:00
/**
* Should HTML be enabled?
*
* @var integer
*/
2012-03-23 22:27:15 +00:00
public $enableHTML = 0;
2012-06-04 19:22:14 +00:00
/**
* Should smilies be enabled?
*
* @var integer
* @see \wcf\system\chat\command\ICommand::SMILEY_OFF
* @see \wcf\system\chat\command\ICommand::SMILEY_ON
* @see \wcf\system\chat\command\ICommand::SMILEY_USER
*/
public $enableSmilies = ICommand::SMILEY_OFF;
public function __construct(CommandHandler $commandHandler) {
EventHandler::getInstance()->fireAction($this, 'shouldInit');
$this->commandHandler = $commandHandler;
2012-03-24 21:29:07 +00:00
}
2012-06-04 19:22:14 +00:00
/**
* Fires the didInit-event.
* You should call this when everything is properly inserted.
*/
2012-03-24 21:29:07 +00:00
public function didInit() {
EventHandler::getInstance()->fireAction($this, 'didInit');
}
2012-06-04 19:22:14 +00:00
/**
* Default-Receiver: Everyone
*
* @see \wcf\system\chat\command\ICommand::getReceiver()
*/
public function getReceiver() {
return null;
}
}