本文整理汇总了PHP中pocketmine\command\PluginCommand::setExecutor方法的典型用法代码示例。如果您正苦于以下问题:PHP PluginCommand::setExecutor方法的具体用法?PHP PluginCommand::setExecutor怎么用?PHP PluginCommand::setExecutor使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pocketmine\command\PluginCommand
的用法示例。
在下文中一共展示了PluginCommand::setExecutor方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: enableCmd
/**
* Register this class as a command.
*
* @param str $cmd - command to register
* @param mixed[] $yaml - options for command
*/
public function enableCmd($cmd, $yaml)
{
$newCmd = new PluginCommand($cmd, $this->owner);
if (isset($yaml["description"])) {
$newCmd->setDescription($yaml["description"]);
}
if (isset($yaml["usage"])) {
$newCmd->setUsage($yaml["usage"]);
}
if (isset($yaml["aliases"]) and is_array($yaml["aliases"])) {
$aliasList = [];
foreach ($yaml["aliases"] as $alias) {
if (strpos($alias, ":") !== false) {
$this->owner->getLogger()->info("Unable to load alias {$alias}");
continue;
}
$aliasList[] = $alias;
}
$newCmd->setAliases($aliasList);
}
if (isset($yaml["permission"])) {
$newCmd->setPermission($yaml["permission"]);
}
if (isset($yaml["permission-message"])) {
$newCmd->setPermissionMessage($yaml["permission-message"]);
}
$newCmd->setExecutor($this);
$cmdMap = $this->owner->getServer()->getCommandMap();
$cmdMap->register($this->owner->getDescription()->getName(), $newCmd);
}
示例2: onEnable
public function onEnable()
{
$cmd = new PluginCommand("customkick", $this);
$cmd->setDescription("Kick with custom message");
$cmd->setUsage("/kick <player>");
$cmd->setExecutor($this);
$this->getServer()->getCommandMap()->register($this->getDescription()->getName(), $cmd);
}
示例3: registerCommand
public function registerCommand(CommandRegistration $stormCommand)
{
$cmd = new PluginCommand($stormCommand->getName(), $this);
$cmd->setExecutor($stormCommand->getCommandHandler());
$this->getServer()->getCommandMap()->register($this->getDescription()->getName(), $cmd);
}