本文整理匯總了PHP中pocketmine\event\player\PlayerKickEvent::isCancelled方法的典型用法代碼示例。如果您正苦於以下問題:PHP PlayerKickEvent::isCancelled方法的具體用法?PHP PlayerKickEvent::isCancelled怎麽用?PHP PlayerKickEvent::isCancelled使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pocketmine\event\player\PlayerKickEvent
的用法示例。
在下文中一共展示了PlayerKickEvent::isCancelled方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: kick
/**
* Kicks a player from the server
*
* @param string $reason
* @param bool $isAdmin
*
* @return bool
*/
public function kick($reason = "", $isAdmin = true)
{
$this->server->getPluginManager()->callEvent($ev = new PlayerKickEvent($this, $reason, $this->getLeaveMessage()));
if (!$ev->isCancelled()) {
if ($isAdmin) {
$message = "Kicked by admin." . ($reason !== "" ? " Reason: " . $reason : "");
} else {
if ($reason === "") {
$message = "disconnectionScreen.noReason";
} else {
$message = $reason;
}
}
$this->close($ev->getQuitMessage(), $message);
return true;
}
return false;
}
示例2: kick
/**
* Kicks a player from the server
*
* @param string $reason
*
* @return bool
*/
public function kick($reason = "")
{
$this->server->getPluginManager()->callEvent($ev = new PlayerKickEvent($this, $reason, TextFormat::YELLOW . $this->username . " has left the game"));
if (!$ev->isCancelled()) {
$message = "Kicked by admin." . ($reason !== "" ? " Reason: " . $reason : "");
$this->sendMessage($message);
$this->close($ev->getQuitMessage(), $message);
return true;
}
return false;
}
示例3: kick
/**
* Kicks a player from the server
*
* @param string $reason
* @param bool $isAdmin
*
* @return bool
*/
public function kick($reason = "Disconnected from server.")
{
$this->server->getPluginManager()->callEvent($ev = new PlayerKickEvent($this, $reason, TextFormat::YELLOW . $this->username . " has left the game"));
if (!$ev->isCancelled()) {
$message = $reason;
$this->sendMessage($message);
$this->close($ev->getQuitMessage(), $message);
return true;
}
return false;
}
示例4: onKick
public function onKick(PlayerKickEvent $e)
{
if ($e->isCancelled()) {
return;
}
if (preg_match('/flying/i', $e->getReason())) {
$state = $this->getState($e->getPlayer(), null);
if ($state) {
$e->setCancelled();
}
}
}