2011-12-27 12:58:28 +00:00
|
|
|
<?php
|
2012-03-24 21:37:47 +00:00
|
|
|
namespace wcf\system\chat\command;
|
2011-12-27 12:58:28 +00:00
|
|
|
use \wcf\system\event\EventHandler;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Default implementation for restricted commands
|
|
|
|
*
|
|
|
|
* @author Tim Düsterhus
|
2012-01-30 16:48:13 +00:00
|
|
|
* @copyright 2010-2012 Tim Düsterhus
|
2011-12-27 12:58:28 +00:00
|
|
|
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
2012-06-04 19:43:03 +00:00
|
|
|
* @package be.bastelstu.wcf.chat
|
2012-03-24 21:37:47 +00:00
|
|
|
* @subpackage system.chat.command
|
2011-12-27 12:58:28 +00:00
|
|
|
*/
|
|
|
|
abstract class AbstractRestrictedCommand extends AbstractCommand implements IRestrictedCommand {
|
|
|
|
public function __construct(CommandHandler $commandHandler) {
|
|
|
|
parent::__construct($commandHandler);
|
|
|
|
|
|
|
|
$this->checkPermission();
|
|
|
|
}
|
|
|
|
|
2012-10-20 14:23:00 +00:00
|
|
|
/**
|
|
|
|
* Fires checkPermission event.
|
|
|
|
*
|
|
|
|
* @see \wcf\system\chat\command\IRestrictedCommand
|
|
|
|
*/
|
2011-12-27 12:58:28 +00:00
|
|
|
public function checkPermission() {
|
|
|
|
EventHandler::getInstance()->fireAction($this, 'checkPermission');
|
|
|
|
}
|
|
|
|
}
|