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

31 lines
822 B
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 timwolla.wcf.chat
* @subpackage system.chat.command
*/
abstract class AbstractCommand implements ICommand {
public $commandHandler = null;
2012-03-23 22:27:15 +00:00
public $enableHTML = 0;
public function __construct(CommandHandler $commandHandler) {
EventHandler::getInstance()->fireAction($this, 'shouldInit');
$this->commandHandler = $commandHandler;
2012-03-24 21:29:07 +00:00
}
public function didInit() {
EventHandler::getInstance()->fireAction($this, 'didInit');
}
public function getReceiver() {
return null;
}
}