当前位置: 首页>>代码示例>>PHP>>正文


PHP Player::removeAttachment方法代码示例

本文整理汇总了PHP中pocketmine\Player::removeAttachment方法的典型用法代码示例。如果您正苦于以下问题:PHP Player::removeAttachment方法的具体用法?PHP Player::removeAttachment怎么用?PHP Player::removeAttachment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pocketmine\Player的用法示例。


在下文中一共展示了Player::removeAttachment方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: resetPerms

 public function resetPerms(Player $pl)
 {
     $n = strtolower($pl->getName());
     if (isset($this->perms[$n])) {
         $attach = $this->perms[$n];
         unset($this->perms[$n]);
         $pl->removeAttachment($attach);
         $pl->recalculatePermissions();
     }
 }
开发者ID:jigibbs123,项目名称:pocketmine-plugins,代码行数:10,代码来源:PermsHacker.php

示例2: removeMember

 public function removeMember(Player $player)
 {
     if (in_array($player->getName(), $this->members)) {
         unset($this->members[array_search($player->getName(), $this->members)]);
         $this->getMain()->saveMembers();
         $attachment = $player->addAttachment($this->getMain()->getServer()->getPluginManager()->getPlugin("RankUp"));
         foreach ($this->permsToSet as $permToSet) {
             $attachment->unsetPermission($permToSet);
         }
         $player->removeAttachment($attachment);
         foreach ($this->exit as $cmd) {
             $this->getMain()->getServer()->dispatchCommand(new ConsoleCommandSender(), str_replace("{name}", $player->getName(), $cmd));
         }
     } else {
         return false;
     }
 }
开发者ID:rock2rap,项目名称:RankUp,代码行数:17,代码来源:Group.php

示例3: removeAttachment

 /**
  * @param Player $player
  */
 public function removeAttachment(Player $player)
 {
     $uuid = $player->getUniqueId();
     if (isset($this->attachments[$uuid]) and $this->attachments[$uuid] instanceof PermissionAttachment) {
         $player->removeAttachment($this->attachments[$uuid]);
         unset($this->attachments[$uuid]);
     }
 }
开发者ID:vvzar,项目名称:PurePerms,代码行数:11,代码来源:PurePerms.php

示例4: unregisterPlayer

 /**
  * @param Player $player
  */
 public function unregisterPlayer(Player $player)
 {
     $this->getLogger()->debug($this->getMessage("logger_messages.unregisterPlayer", $player->getName()));
     $uniqueId = $player->getUniqueId()->toString();
     if (isset($this->attachments[$uniqueId])) {
         $player->removeAttachment($this->attachments[$uniqueId]);
     }
     unset($this->attachments[$uniqueId]);
 }
开发者ID:pomee4,项目名称:PurePerms,代码行数:12,代码来源:PurePerms.php

示例5: removeAttachment

 /**
  * @param Player $player
  */
 public function removeAttachment(Player $player)
 {
     if (isset($this->attachments[$player->getUniqueId()])) {
         $player->removeAttachment($this->attachments[$player->getUniqueId()]);
         unset($this->attachments[$player->getUniqueId()]);
     }
 }
开发者ID:BoltsLeScrub,项目名称:PurePerms,代码行数:10,代码来源:PurePerms.php

示例6: removeAttachment

 public function removeAttachment(Player $player)
 {
     $player->removeAttachment($this->getAttachment($player));
     unset($this->attachment[$player->getName()]);
 }
开发者ID:BoysElCrack,项目名称:xPermissions,代码行数:5,代码来源:xPermissions.php


注:本文中的pocketmine\Player::removeAttachment方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。